commit 605c99bc01f75428b5e6ab8a7eeeff8b52a2b11a Author: Matt Anderson Date: Sat Mar 28 10:40:48 2026 -0500 first commit diff --git a/README.md b/README.md new file mode 100644 index 0000000..73768cb --- /dev/null +++ b/README.md @@ -0,0 +1,93 @@ +# dotfiles + + + +## Getting started + +To make it easy for you to get started with GitLab, here's a list of recommended next steps. + +Already a pro? Just edit this README.md and make it your own. Want to make it easy? [Use the template at the bottom](#editing-this-readme)! + +## Add your files + +* [Create](https://docs.gitlab.com/user/project/repository/web_editor/#create-a-file) or [upload](https://docs.gitlab.com/user/project/repository/web_editor/#upload-a-file) files +* [Add files using the command line](https://docs.gitlab.com/topics/git/add_files/#add-files-to-a-git-repository) or push an existing Git repository with the following command: + +``` +cd existing_repo +git remote add origin http://gitlab.mattserver.net/root/dotfiles.git +git branch -M main +git push -uf origin main +``` + +## Integrate with your tools + +* [Set up project integrations](http://gitlab.mattserver.net/root/dotfiles/-/settings/integrations) + +## Collaborate with your team + +* [Invite team members and collaborators](https://docs.gitlab.com/user/project/members/) +* [Create a new merge request](https://docs.gitlab.com/user/project/merge_requests/creating_merge_requests/) +* [Automatically close issues from merge requests](https://docs.gitlab.com/user/project/issues/managing_issues/#closing-issues-automatically) +* [Enable merge request approvals](https://docs.gitlab.com/user/project/merge_requests/approvals/) +* [Set auto-merge](https://docs.gitlab.com/user/project/merge_requests/auto_merge/) + +## Test and Deploy + +Use the built-in continuous integration in GitLab. + +* [Get started with GitLab CI/CD](https://docs.gitlab.com/ci/quick_start/) +* [Analyze your code for known vulnerabilities with Static Application Security Testing (SAST)](https://docs.gitlab.com/user/application_security/sast/) +* [Deploy to Kubernetes, Amazon EC2, or Amazon ECS using Auto Deploy](https://docs.gitlab.com/topics/autodevops/requirements/) +* [Use pull-based deployments for improved Kubernetes management](https://docs.gitlab.com/user/clusters/agent/) +* [Set up protected environments](https://docs.gitlab.com/ci/environments/protected_environments/) + +*** + +# Editing this README + +When you're ready to make this README your own, just edit this file and use the handy template below (or feel free to structure it however you want - this is just a starting point!). Thanks to [makeareadme.com](https://www.makeareadme.com/) for this template. + +## Suggestions for a good README + +Every project is different, so consider which of these sections apply to yours. The sections used in the template are suggestions for most open source projects. Also keep in mind that while a README can be too long and detailed, too long is better than too short. If you think your README is too long, consider utilizing another form of documentation rather than cutting out information. + +## Name +Choose a self-explaining name for your project. + +## Description +Let people know what your project can do specifically. Provide context and add a link to any reference visitors might be unfamiliar with. A list of Features or a Background subsection can also be added here. If there are alternatives to your project, this is a good place to list differentiating factors. + +## Badges +On some READMEs, you may see small images that convey metadata, such as whether or not all the tests are passing for the project. You can use Shields to add some to your README. Many services also have instructions for adding a badge. + +## Visuals +Depending on what you are making, it can be a good idea to include screenshots or even a video (you'll frequently see GIFs rather than actual videos). Tools like ttygif can help, but check out Asciinema for a more sophisticated method. + +## Installation +Within a particular ecosystem, there may be a common way of installing things, such as using Yarn, NuGet, or Homebrew. However, consider the possibility that whoever is reading your README is a novice and would like more guidance. Listing specific steps helps remove ambiguity and gets people to using your project as quickly as possible. If it only runs in a specific context like a particular programming language version or operating system or has dependencies that have to be installed manually, also add a Requirements subsection. + +## Usage +Use examples liberally, and show the expected output if you can. It's helpful to have inline the smallest example of usage that you can demonstrate, while providing links to more sophisticated examples if they are too long to reasonably include in the README. + +## Support +Tell people where they can go to for help. It can be any combination of an issue tracker, a chat room, an email address, etc. + +## Roadmap +If you have ideas for releases in the future, it is a good idea to list them in the README. + +## Contributing +State if you are open to contributions and what your requirements are for accepting them. + +For people who want to make changes to your project, it's helpful to have some documentation on how to get started. Perhaps there is a script that they should run or some environment variables that they need to set. Make these steps explicit. These instructions could also be useful to your future self. + +You can also document commands to lint the code or run tests. These steps help to ensure high code quality and reduce the likelihood that the changes inadvertently break something. Having instructions for running tests is especially helpful if it requires external setup, such as starting a Selenium server for testing in a browser. + +## Authors and acknowledgment +Show your appreciation to those who have contributed to the project. + +## License +For open source projects, say how it is licensed. + +## Project status +If you have run out of energy or time for your project, put a note at the top of the README saying that development has slowed down or stopped completely. Someone may choose to fork your project or volunteer to step in as a maintainer or owner, allowing your project to keep going. You can also make an explicit request for maintainers. diff --git a/bash/.bashrc b/bash/.bashrc new file mode 100644 index 0000000..016496b --- /dev/null +++ b/bash/.bashrc @@ -0,0 +1,261 @@ +export BASH_SILENCE_DEPRECATION_WARNING=1 +export TERM=xterm-256color + +#export PATH=$PATH:/Users/matt/go/bin +export PATH=$PATH:~/go/bin +export PATH=$PATH:/usr/local/go/bin +export PATH=$PATH:/Users/matt/Development/Applications/dart-sass + +set -o vi +bind -m vi-command 'Control-l: clear-screen' +bind -m vi-insert 'Control-l: clear-screen' + +alias ls='ls --color=auto' +alias vi=nvim +alias py=python3 + +# Git aliases +alias ga='git add' +alias gcm='git commit -m' +alias gst='git status' +alias gp='git push' + +alias k9s='$HOME/dotfiles/k9s/.config/k9s/k9s-theme-sync.sh' +alias oc='opencode' + +alias vd='vd --theme asciimono' + +export EDITOR='nvim' +export PATH=$PATH:/home/matt/Applications/lua_ls/bin + +# k9s +export K9S_CONFIG_DIR=~/.config/k9s + +# ~/.bashrc: executed by bash(1) for non-login shells. +# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) +# for examples +# +n () +{ + # Block nesting of nnn in subshells + [ "${NNNLVL:-0}" -eq 0 ] || { + echo "nnn is already running" + return + } + + # The behaviour is set to cd on quit (nnn checks if NNN_TMPFILE is set) + # If NNN_TMPFILE is set to a custom path, it must be exported for nnn to + # see. To cd on quit only on ^G, remove the "export" and make sure not to + # use a custom path, i.e. set NNN_TMPFILE *exactly* as follows: + # NNN_TMPFILE="${XDG_CONFIG_HOME:-$HOME/.config}/nnn/.lastd" + export NNN_TMPFILE="${XDG_CONFIG_HOME:-$HOME/.config}/nnn/.lastd" + + # Unmask ^Q (, ^V etc.) (if required, see `stty -a`) to Quit nnn + # stty start undef + # stty stop undef + # stty lwrap undef + # stty lnext undef + + # The command builtin allows one to alias nnn to n, if desired, without + # making an infinitely recursive alias + command nnn -C "$@" + + [ ! -f "$NNN_TMPFILE" ] || { + . "$NNN_TMPFILE" + rm -f -- "$NNN_TMPFILE" > /dev/null + } +} + +# If not running interactively, don't do anything +case $- in + *i*) ;; + *) return;; +esac + +# don't put duplicate lines or lines starting with space in the history. +# See bash(1) for more options +HISTCONTROL=ignoreboth + +# append to the history file, don't overwrite it +shopt -s histappend + +# for setting history length see HISTSIZE and HISTFILESIZE in bash(1) +HISTSIZE=1000 +HISTFILESIZE=2000 + +# check the window size after each command and, if necessary, +# update the values of LINES and COLUMNS. +shopt -s checkwinsize + +# If set, the pattern "**" used in a pathname expansion context will +# match all files and zero or more directories and subdirectories. +#shopt -s globstar + +# make less more friendly for non-text input files, see lesspipe(1) +#[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)" + +# set variable identifying the chroot you work in (used in the prompt below) +if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then + debian_chroot=$(cat /etc/debian_chroot) +fi + +# set a fancy prompt (non-color, unless we know we "want" color) +case "$TERM" in + xterm-color|*-256color) color_prompt=yes;; +esac + +# uncomment for a colored prompt, if the terminal has the capability; turned +# off by default to not distract the user: the focus in a terminal window +# should be on the output of commands, not on the prompt +#force_color_prompt=yes + +if [ -n "$force_color_prompt" ]; then + if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then + # We have color support; assume it's compliant with Ecma-48 + # (ISO/IEC-6429). (Lack of such support is extremely rare, and such + # a case would tend to support setf rather than setaf.) + color_prompt=yes + else + color_prompt= + fi +fi + +if [ "$color_prompt" = yes ]; then + PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\n\$ ' +else + PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\n\$ ' +fi +unset color_prompt force_color_prompt + +# If this is an xterm set the title to user@host:dir +case "$TERM" in +xterm*|rxvt*) + PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1" + ;; +*) + ;; +esac + +# enable color support of ls and also add handy aliases +if [ -x /usr/bin/dircolors ]; then + test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)" + alias ls='ls --color=auto' + #alias dir='dir --color=auto' + #alias vdir='vdir --color=auto' + + #alias grep='grep --color=auto' + #alias fgrep='fgrep --color=auto' + #alias egrep='egrep --color=auto' +fi + +# colored GCC warnings and errors +#export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01' + +# some more ls aliases +alias ll='ls -l' +alias la='ls -A' +alias l='ls -CF' + +# Alias definitions. +# You may want to put all your additions into a separate file like +# ~/.bash_aliases, instead of adding them here directly. +# See /usr/share/doc/bash-doc/examples in the bash-doc package. + +if [ -f ~/.bash_aliases ]; then + . ~/.bash_aliases +fi + +# enable programmable completion features (you don't need to enable +# this, if it's already enabled in /etc/bash.bashrc and /etc/profile +# sources /etc/bash.bashrc). +if ! shopt -oq posix; then + if [ -f /usr/share/bash-completion/bash_completion ]; then + . /usr/share/bash-completion/bash_completion + elif [ -f /etc/bash_completion ]; then + . /etc/bash_completion + fi +fi +#. "$HOME/.cargo/env" +# + + +# bun +export BUN_INSTALL="$HOME/.bun" +export PATH=$BUN_INSTALL/bin:$PATH + + +ALACRITTY_DARK=' +[colors.primary] +background = "#000000" +foreground = "#abb2bf" + +[colors.bright] +black = "#282c34" +blue = "#61afef" +cyan = "#56b6c2" +green = "#98c379" +magenta = "#c678dd" +red = "#e06c75" +white = "#bfc5ce" +yellow = "#e5c07b" + +[colors.normal] +black = "#282c34" +blue = "#61afef" +cyan = "#56b6c2" +green = "#98c379" +magenta = "#c678dd" +red = "#e06c75" +white = "#abb2bf" +yellow = "#e5c07b" + +[font] +normal = { family = "Hack Nerd Font Mono", style = "Regular" } +' + +ALACRITTY_LIGHT=' +[colors.primary] +foreground = "#2a2b33" +background = "#ffffff" + +[colors.normal] +black = "#000000" +red = "#b6443a" +green = "#40803f" +yellow = "#795300" +blue = "#3360c1" +magenta = "#841e83" +cyan = "#006996" +white = "#ccccc0" + +[colors.bright] +black = "#000000" +red = "#b6443a" +green = "#40803f" +yellow = "#795300" +blue = "#3360c1" +magenta = "#841e83" +cyan = "#006996" +white = "#ccccc0" + +[font] +normal = { family = "Hack Nerd Font Mono", style = "Regular" } +' + +# Load bash-completion +# if [ -f "$(brew --prefix)/etc/profile.d/bash_completion.sh" ]; then +# source "$(brew --prefix)/etc/profile.d/bash_completion.sh" +# fi + +alias ad="echo -e \"\${ALACRITTY_DARK}\" > ~/.config/alacritty/alacritty.toml" +alias al="echo -e \"\${ALACRITTY_LIGHT}\" > ~/.config/alacritty/alacritty.toml" + +alias kc=kubecolor +# complete -o default -F __start_kubectl kc +# source <(kubectl completion bash) + +export MANPAGER='nvim +Man!' + +export FLYCTL_INSTALL="/home/matt/.fly" +export PATH="$FLYCTL_INSTALL/bin:$PATH" +export PATH="$PATH:/Users/matt/.foundry/bin" diff --git a/ghostty/.config/ghostty/config b/ghostty/.config/ghostty/config new file mode 100644 index 0000000..4bbf756 --- /dev/null +++ b/ghostty/.config/ghostty/config @@ -0,0 +1,26 @@ +# theme = onedark +theme = dark:onedark,light:onelight + +# fonts +font-family = SFMono Nerd Font +# font-style = Regular +# font-style-bold = Regular +font-thicken = true +macos-titlebar-style = hidden + +# linux +# gtk-titlebar = false + +# cursor +shell-integration-features = no-cursor +cursor-style = block + +# background +background-image = ~/.config/ghostty/earth.png +background-image-opacity = 0 +background-image-fit = cover + +macos-icon = xray + +# shader +# custom-shader = ~/.config/ghostty/starfield.glsl diff --git a/ghostty/.config/ghostty/cursor_blaze.glsl b/ghostty/.config/ghostty/cursor_blaze.glsl new file mode 100644 index 0000000..44c92f0 --- /dev/null +++ b/ghostty/.config/ghostty/cursor_blaze.glsl @@ -0,0 +1,161 @@ +float sdBox(in vec2 p, in vec2 xy, in vec2 b) +{ + vec2 d = abs(p - xy) - b; + return length(max(d, 0.0)) + min(max(d.x, d.y), 0.0); +} + +// //Author: https://iquilezles.org/articles/distfunctions2d/ +float sdTrail(in vec2 p, in vec2 v0, in vec2 v1, in vec2 v2, in vec2 v3) +{ + float d = dot(p - v0, p - v0); + float s = 1.0; + + // Edge from v3 to v0 + { + vec2 e = v3 - v0; + vec2 w = p - v0; + vec2 b = w - e * clamp(dot(w, e) / dot(e, e), 0.0, 1.0); + d = min(d, dot(b, b)); + + // Compute branchless boolean conditions: + float c0 = step(0.0, p.y - v0.y); // 1 if (p.y >= v0.y) + float c1 = 1.0 - step(0.0, p.y - v3.y); // 1 if (p.y < v3.y) + float c2 = 1.0 - step(0.0, e.x * w.y - e.y * w.x); // 1 if (e.x*w.y > e.y*w.x) + float allCond = c0 * c1 * c2; + float noneCond = (1.0 - c0) * (1.0 - c1) * (1.0 - c2); + // If either allCond or noneCond is 1, then flip factor becomes -1. + float flip = mix(1.0, -1.0, step(0.5, allCond + noneCond)); + s *= flip; + } + + // Edge from v0 to v1 + { + vec2 e = v0 - v1; + vec2 w = p - v1; + vec2 b = w - e * clamp(dot(w, e) / dot(e, e), 0.0, 1.0); + d = min(d, dot(b, b)); + + float c0 = step(0.0, p.y - v1.y); + float c1 = 1.0 - step(0.0, p.y - v0.y); + float c2 = 1.0 - step(0.0, e.x * w.y - e.y * w.x); + float allCond = c0 * c1 * c2; + float noneCond = (1.0 - c0) * (1.0 - c1) * (1.0 - c2); + float flip = mix(1.0, -1.0, step(0.5, allCond + noneCond)); + s *= flip; + } + + // Edge from v1 to v2 + { + vec2 e = v1 - v2; + vec2 w = p - v2; + vec2 b = w - e * clamp(dot(w, e) / dot(e, e), 0.0, 1.0); + d = min(d, dot(b, b)); + + float c0 = step(0.0, p.y - v2.y); + float c1 = 1.0 - step(0.0, p.y - v1.y); + float c2 = 1.0 - step(0.0, e.x * w.y - e.y * w.x); + float allCond = c0 * c1 * c2; + float noneCond = (1.0 - c0) * (1.0 - c1) * (1.0 - c2); + float flip = mix(1.0, -1.0, step(0.5, allCond + noneCond)); + s *= flip; + } + + // Edge from v2 to v3 + { + vec2 e = v2 - v3; + vec2 w = p - v3; + vec2 b = w - e * clamp(dot(w, e) / dot(e, e), 0.0, 1.0); + d = min(d, dot(b, b)); + + float c0 = step(0.0, p.y - v3.y); + float c1 = 1.0 - step(0.0, p.y - v2.y); + float c2 = 1.0 - step(0.0, e.x * w.y - e.y * w.x); + float allCond = c0 * c1 * c2; + float noneCond = (1.0 - c0) * (1.0 - c1) * (1.0 - c2); + float flip = mix(1.0, -1.0, step(0.5, allCond + noneCond)); + s *= flip; + } + + return s * sqrt(d); +} + +vec2 normalize(vec2 value, float isPosition) { + return (value * 2.0 - (iResolution.xy * isPosition)) / iResolution.y; +} + +float ParametricBlend(float t) +{ + float sqr = t * t; + return sqr / (2.0 * (sqr - t) + 1.0); +} + +float antialising(float distance) { + return 1. - smoothstep(0., normalize(vec2(2., 2.), 0.).x, distance); +} + +float determineStartVertexFactor(vec2 a, vec2 b) { + // Conditions using step + float condition1 = step(b.x, a.x) * step(a.y, b.y); // a.x < b.x && a.y > b.y + float condition2 = step(a.x, b.x) * step(b.y, a.y); // a.x > b.x && a.y < b.y + + // If neither condition is met, return 1 (else case) + return 1.0 - max(condition1, condition2); +} + +const vec4 TRAIL_COLOR = vec4(1.0, 0.725, 0.161, 1.0); +const vec4 TRAIL_COLOR_ACCENT = vec4(1.0, 0., 0., 1.0); +// const vec4 TRAIL_COLOR = vec4(0.482, 0.886, 1.0, 1.0); +// const vec4 TRAIL_COLOR_ACCENT = vec4(0.0, 0.424, 1.0, 1.0); +const vec4 CURRENT_CURSOR_COLOR = TRAIL_COLOR; +const vec4 PREVIOUS_CURSOR_COLOR = TRAIL_COLOR; +const float DURATION = 0.2; + +void mainImage(out vec4 fragColor, in vec2 fragCoord) +{ + #if !defined(WEB) + fragColor = texture(iChannel0, fragCoord.xy / iResolution.xy); + #endif + //Normalization for fragCoord to a space of -1 to 1; + vec2 vu = normalize(fragCoord, 1.); + vec2 offsetFactor = vec2(-.5, 0.5); + + //Normalization for cursor position and size; + //cursor xy has the postion in a space of -1 to 1; + //zw has the width and height + vec4 currentCursor = vec4(normalize(iCurrentCursor.xy, 1.), normalize(iCurrentCursor.zw, 0.)); + vec4 previousCursor = vec4(normalize(iPreviousCursor.xy, 1.), normalize(iPreviousCursor.zw, 0.)); + + //When drawing a parellelogram between cursors for the trail i need to determine where to start at the top-left or top-right vertex of the cursor + float vertexFactor = determineStartVertexFactor(currentCursor.xy, previousCursor.xy); + float invertedVertexFactor = 1.0 - vertexFactor; + + //Set every vertex of my parellogram + vec2 v0 = vec2(currentCursor.x + currentCursor.z * vertexFactor, currentCursor.y - currentCursor.w); + vec2 v1 = vec2(currentCursor.x + currentCursor.z * invertedVertexFactor, currentCursor.y); + vec2 v2 = vec2(previousCursor.x + currentCursor.z * invertedVertexFactor, previousCursor.y); + vec2 v3 = vec2(previousCursor.x + currentCursor.z * vertexFactor, previousCursor.y - previousCursor.w); + + vec4 newColor = vec4(fragColor); + + float progress = ParametricBlend(clamp((iTime - iTimeCursorChange) / DURATION, 0.0, 1.0)); + + //Distance between cursors determine the total length of the parallelogram; + float lineLength = distance(currentCursor.xy, previousCursor.xy); + float distanceToEnd = distance(vu.xy, vec2(currentCursor.x + (currentCursor.z / 2.), currentCursor.y - (currentCursor.w / 2.))); + float alphaModifier = distanceToEnd / (lineLength * (1.0 - progress)); + + // float d2 = sdTrail(vu, v0, v1, v2, v3); + // newColor = mix(newColor, TRAIL_COLOR_ACCENT, 1.0 - smoothstep(d2, -0.01, 0.001)); + // newColor = mix(newColor, TRAIL_COLOR, 1.0 - smoothstep(d2, -0.01, 0.001)); + // newColor = mix(newColor, TRAIL_COLOR, antialising(d2)); + + float cCursorDistance = sdBox(vu, currentCursor.xy - (currentCursor.zw * offsetFactor), currentCursor.zw * 0.5); + newColor = mix(newColor, TRAIL_COLOR_ACCENT, 1.0 - smoothstep(cCursorDistance, -0.000, 0.003 * (1. - progress))); + newColor = mix(newColor, CURRENT_CURSOR_COLOR, 1.0 - smoothstep(cCursorDistance, -0.000, 0.003 * (1. - progress))); + + // float pCursorDistance = sdBox(vu, previousCursor.xy - (previousCursor.zw * offsetFactor), previousCursor.zw * 0.5); + // newColor = mix(newColor, PREVIOUS_CURSOR_COLOR, antialising(pCursorDistance)); + + fragColor = mix(fragColor, newColor, 1.); + // fragColor = mix(fragColor, newColor, 1.0 - alphaModifier); +} diff --git a/ghostty/.config/ghostty/earth.png b/ghostty/.config/ghostty/earth.png new file mode 100644 index 0000000..236f1b7 Binary files /dev/null and b/ghostty/.config/ghostty/earth.png differ diff --git a/ghostty/.config/ghostty/starfield.glsl b/ghostty/.config/ghostty/starfield.glsl new file mode 100644 index 0000000..81b397c --- /dev/null +++ b/ghostty/.config/ghostty/starfield.glsl @@ -0,0 +1,156 @@ +// flip this: false = white stars on dark bg, true = dark stars on light bg +const bool invertStars = false; + +// how dark the inverted stars are (0.0 = pure black, 1.0 = invisible/white) +const float invertedStarBrightness = 0.7; + +// transparent background +const bool transparent = true; + +// terminal contents luminance threshold to be considered background (0.0 to 1.0) +const float threshold = 0.15; + +// divisions of grid +const float repeats = 6.; + +// number of layers +const float layers = 3.; + +float luminance(vec3 color) { + return dot(color, vec3(0.2126, 0.7152, 0.0722)); +} + +float N21(vec2 p) { + p = fract(p * vec2(233.34, 851.73)); + p += dot(p, p + 23.45); + return fract(p.x * p.y); +} + +vec2 N22(vec2 p) { + float n = N21(p); + return vec2(n, N21(p + n)); +} + +mat2 scale(vec2 _scale) { + return mat2(_scale.x, 0.0, + 0.0, _scale.y); +} + +// 2D Noise based on Morgan McGuire +float noise(in vec2 st) { + vec2 i = floor(st); + vec2 f = fract(st); + + // Four corners in 2D of a tile + float a = N21(i); + float b = N21(i + vec2(1.0, 0.0)); + float c = N21(i + vec2(0.0, 1.0)); + float d = N21(i + vec2(1.0, 1.0)); + + // Smooth Interpolation + vec2 u = f * f * (3.0 - 2.0 * f); // Cubic Hermite Curve + + // Mix 4 corners percentages + return mix(a, b, u.x) + + (c - a) * u.y * (1.0 - u.x) + + (d - b) * u.x * u.y; +} + +float perlin2(vec2 uv, int octaves, float pscale) { + float col = 1.; + float initScale = 4.; + for (int l = 0; l < octaves; l++) { + float val = noise(uv * initScale); + if (col <= 0.01) { + col = 0.; + break; + } + val -= 0.01; + val *= 0.5; + col *= val; + initScale *= pscale; + } + return col; +} + +vec3 stars(vec2 uv, float offset) { + float timeScale = -(iTime * 0.01 + offset) / layers; + float trans = fract(timeScale); + float newRnd = floor(timeScale); + vec3 col = vec3(0.); + + // Translate uv then scale for center + uv -= vec2(0.5); + uv = scale(vec2(trans)) * uv; + uv += vec2(0.5); + + // Create square aspect ratio + uv.x *= iResolution.x / iResolution.y; + + // Create boxes + uv *= repeats; + + // Get position + vec2 ipos = floor(uv); + + // Return uv as 0 to 1 + uv = fract(uv); + + // Calculate random xy and size + vec2 rndXY = N22(newRnd + ipos * (offset + 1.)) * 0.9 + 0.05; + float rndSize = N21(ipos) * 200. + 500.; + + vec2 j = (rndXY - uv) * rndSize; + float sparkle = 1. / dot(j, j); + + col += vec3(1.0) * sparkle; + + col *= smoothstep(1., 0.8, trans); + return col; +} + +void mainImage(out vec4 fragColor, in vec2 fragCoord) +{ + // Normalized pixel coordinates (from 0 to 1) + vec2 uv = fragCoord / iResolution.xy; + + vec3 col = vec3(0.); + + for (float i = 0.; i < layers; i++) { + col += stars(uv, i); + } + + // Clamp sparkle intensity + col = clamp(col, 0.0, 1.0); + + // Invert: white sparkle on black bg becomes dark sparkle on white bg + if (invertStars) { + col = vec3(1.0) - col; + col = mix(col, vec3(1.0), invertedStarBrightness); + } + + // Sample the terminal screen texture including alpha channel + vec4 terminalColor = texture(iChannel0, uv); + + if (transparent) { + col = invertStars ? col * terminalColor.rgb : col + terminalColor.rgb; + } + + // Mask: detect background pixels of terminal content + // For light bg, background has HIGH luminance; for dark bg, background has LOW luminance + float termLum = luminance(terminalColor.rgb); + float mask; + if (invertStars) { + // Light bg: background is bright, text is dark — show stars where luminance is HIGH + mask = step(1.0 - threshold, termLum); + } else { + // Dark bg: background is dark, text is bright — show stars where luminance is LOW + mask = 1.0 - step(threshold, termLum); + } + + vec3 blendedColor = mix(terminalColor.rgb, col, mask); + + // Apply terminal's alpha to control overall opacity + fragColor = vec4(blendedColor, terminalColor.a); +} + diff --git a/ghostty/.config/ghostty/themes/onedark b/ghostty/.config/ghostty/themes/onedark new file mode 100644 index 0000000..712e55e --- /dev/null +++ b/ghostty/.config/ghostty/themes/onedark @@ -0,0 +1,18 @@ +palette = 0=#282c34 +palette = 1=#e06c75 +palette = 2=#98c379 +palette = 3=#e5c07b +palette = 4=#61afef +palette = 5=#c678dd +palette = 6=#56b6c2 +palette = 7=#abb2bf +palette = 8=#5f687b +palette = 9=#e06c75 +palette = 10=#98c379 +palette = 11=#e5c07b +palette = 12=#61afef +palette = 13=#c678dd +palette = 14=#56b6c2 +palette = 15=#bfc5ce +background = #111111 +foreground = #abb2bf diff --git a/ghostty/.config/ghostty/themes/onelight b/ghostty/.config/ghostty/themes/onelight new file mode 100644 index 0000000..f554cce --- /dev/null +++ b/ghostty/.config/ghostty/themes/onelight @@ -0,0 +1,18 @@ +palette = 0=#000000 +palette = 1=#b6443a +palette = 2=#40803f +palette = 3=#795300 +palette = 4=#3360c1 +palette = 5=#841e83 +palette = 6=#006996 +palette = 7=#6d6d59 +palette = 8=#000000 +palette = 9=#b6443a +palette = 10=#40803f +palette = 11=#795300 +palette = 12=#3360c1 +palette = 13=#841e83 +palette = 14=#006996 +palette = 15=#ccccc0 +background = #eeeeee +foreground = #2a2b33 diff --git a/k9s/.config/k9s/aliases.yaml b/k9s/.config/k9s/aliases.yaml new file mode 100644 index 0000000..ee4d9ec --- /dev/null +++ b/k9s/.config/k9s/aliases.yaml @@ -0,0 +1,9 @@ +aliases: + dp: deployments + sec: v1/secrets + jo: jobs + cr: clusterroles + crb: clusterrolebindings + ro: roles + rb: rolebindings + np: networkpolicies diff --git a/k9s/.config/k9s/clusters/hi b/k9s/.config/k9s/clusters/hi new file mode 100644 index 0000000..e69de29 diff --git a/k9s/.config/k9s/clusters/kind-kind/kind-kind/benchmarks.yaml b/k9s/.config/k9s/clusters/kind-kind/kind-kind/benchmarks.yaml new file mode 100644 index 0000000..9efba4c --- /dev/null +++ b/k9s/.config/k9s/clusters/kind-kind/kind-kind/benchmarks.yaml @@ -0,0 +1,4 @@ +benchmarks: + defaults: + concurrency: 2 + requests: 200 \ No newline at end of file diff --git a/k9s/.config/k9s/clusters/kind-kind/kind-kind/config.yaml b/k9s/.config/k9s/clusters/kind-kind/kind-kind/config.yaml new file mode 100644 index 0000000..f17dc2f --- /dev/null +++ b/k9s/.config/k9s/clusters/kind-kind/kind-kind/config.yaml @@ -0,0 +1,12 @@ +k9s: + cluster: kind-kind + namespace: + active: default + lockFavorites: false + favorites: + - default + view: + active: context + featureGates: + nodeShell: false + portForwardAddress: localhost diff --git a/k9s/.config/k9s/config.yaml b/k9s/.config/k9s/config.yaml new file mode 100644 index 0000000..830786f --- /dev/null +++ b/k9s/.config/k9s/config.yaml @@ -0,0 +1,43 @@ +k9s: + liveViewAutoRefresh: false + screenDumpDir: /Users/matt/Library/Application Support/k9s/screen-dumps + refreshRate: 2 + maxConnRetry: 5 + readOnly: false + noExitOnCtrlC: false + ui: + enableMouse: false + headless: true + logoless: false + crumbsless: false + reactive: false + noIcons: false + defaultsToFullScreen: false + skin: onedark + skipLatestRevCheck: false + disablePodCounting: false + shellPod: + image: busybox:1.35.0 + namespace: default + limits: + cpu: 100m + memory: 100Mi + imageScans: + enable: false + exclusions: + namespaces: [] + labels: {} + logger: + tail: 100 + buffer: 5000 + sinceSeconds: -1 + textWrap: false + disableAutoscroll: false + showTime: false + thresholds: + cpu: + critical: 90 + warn: 70 + memory: + critical: 90 + warn: 70 diff --git a/k9s/.config/k9s/k9s-theme-sync.sh b/k9s/.config/k9s/k9s-theme-sync.sh new file mode 100755 index 0000000..058c454 --- /dev/null +++ b/k9s/.config/k9s/k9s-theme-sync.sh @@ -0,0 +1,17 @@ +#!/bin/bash + +appearance=$(defaults read -g AppleInterfaceStyle 2>/dev/null) + +if [[ "$appearance" = "Dark" ]]; then + skin="onedark" +else + skin="onelight" +fi + +config_file="$HOME/dotfiles/k9s/.config/k9s/config.yaml" + +if [[ -f "$config_file" ]]; then + sed -i '' "s/skin: .*/skin: $skin/" "$config_file" +fi + +exec k9s "$@" diff --git a/k9s/.config/k9s/k9s.log b/k9s/.config/k9s/k9s.log new file mode 100644 index 0000000..6f38051 --- /dev/null +++ b/k9s/.config/k9s/k9s.log @@ -0,0 +1,12241 @@ +12:05PM INF 🐶 K9s starting up... +12:05PM INF ✅ Kubernetes connectivity +12:05PM WRN log-reader canceled error="stream canceled context canceled for default/goweb-7486c4b789-ttfpp (goweb)" +12:05PM WRN log-reader canceled error="stream canceled context canceled for default/goweb-7486c4b789-ttfpp (goweb)" +12:07PM WRN log-reader canceled error="stream canceled context canceled for default/goweb-7486c4b789-ttfpp (goweb)" +12:07PM ERR Command failed error="exit status 1" +12:07PM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default goweb-7486c4b789-ttfpp -c goweb": exit status 1 + error="exit status 1\n" +12:07PM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +12:07PM WRN log-reader canceled error="stream canceled context canceled for default/goweb-7486c4b789-ttfpp (goweb)" +12:07PM ERR Command failed error="exit status 1" +12:07PM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default goweb-7486c4b789-ttfpp -c goweb": exit status 1 + error="exit status 1\n" +12:07PM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +12:13PM WRN log-reader canceled error="stream canceled context canceled for default/goweb-7486c4b789-ttfpp (goweb)" +12:13PM WRN log-reader canceled error="stream canceled context canceled for default/goweb-7486c4b789-ttfpp (goweb)" +12:13PM WRN log-reader canceled error="stream canceled context canceled for default/goweb-7486c4b789-ttfpp (goweb)" +12:13PM WRN log-reader canceled error="stream canceled context canceled for default/goweb-7486c4b789-ttfpp (goweb)" +12:13PM WRN log-reader canceled error="stream canceled context canceled for default/goweb-7486c4b789-ttfpp (goweb)" +12:14PM WRN log-reader canceled error="stream canceled context canceled for default/goweb-7486c4b789-ttfpp (goweb)" +12:14PM ERR no port-forward defined +12:15PM WRN log-reader canceled error="stream canceled context canceled for default/goweb-7486c4b789-ttfpp (goweb)" +12:17PM WRN log-reader canceled error="stream canceled context canceled for default/goweb-7486c4b789-ttfpp (goweb)" +12:17PM WRN log-reader canceled error="stream canceled context canceled for default/goweb-7486c4b789-ttfpp (goweb)" +1:59PM WRN log-reader canceled error="stream canceled context canceled for default/goweb-7486c4b789-ttfpp (goweb)" +1:59PM WRN log-reader canceled error="stream canceled context canceled for default/goweb-7486c4b789-ttfpp (goweb)" +3:13PM WRN log-reader canceled error="stream canceled context canceled for default/goweb-7486c4b789-ttfpp (goweb)" +3:13PM WRN log-reader canceled error="stream canceled context canceled for default/goweb-7486c4b789-ttfpp (goweb)" +3:13PM WRN log-reader canceled error="stream canceled context canceled for default/goweb-7486c4b789-ttfpp (goweb)" +3:22PM WRN log-reader canceled error="stream canceled context canceled for default/goweb-7486c4b789-ttfpp (goweb)" +3:22PM WRN log-reader canceled error="stream canceled context canceled for default/goweb-7486c4b789-ttfpp (goweb)" +3:22PM WRN log-reader canceled error="stream canceled context canceled for default/goweb-7486c4b789-ttfpp (goweb)" +7:16PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": context deadline exceeded" +7:16PM ERR ClusterUpdater failed error="conn check failed (1/5)" +11:15PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": context deadline exceeded" +11:15PM ERR ClusterUpdater failed error="conn check failed (1/5)" +11:15PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": net/http: TLS handshake timeout - error from a previous attempt: http2: client connection lost" +11:15PM ERR ClusterUpdater failed error="conn check failed (2/5)" +11:15PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": net/http: TLS handshake timeout" +11:15PM ERR ClusterUpdater failed error="conn check failed (3/5)" +11:16PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": net/http: TLS handshake timeout" +11:16PM ERR ClusterUpdater failed error="conn check failed (4/5)" +11:16PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +11:16PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +9:02AM INF 🐶 K9s starting up... +9:02AM INF ✅ Kubernetes connectivity +10:35AM ERR no port-forward defined +10:35AM WRN unable to resolve ports on default/kubernetes-bootcamp-9bc58d867-g7l4h error="no exposed ports" +10:35AM WRN unable to resolve ports on default/kubernetes-bootcamp-9bc58d867-g7l4h error="no exposed ports" +10:35AM WRN unable to resolve ports on default/kubernetes-bootcamp-9bc58d867-g7l4h error="no exposed ports" +10:35AM WRN unable to resolve ports on default/kubernetes-bootcamp-9bc58d867-g7l4h error="no exposed ports" +3:56PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +3:56PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:37PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": context deadline exceeded" +4:37PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:38PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": net/http: TLS handshake timeout - error from a previous attempt: http2: client connection lost" +4:38PM ERR ClusterUpdater failed error="conn check failed (2/5)" +4:38PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": net/http: TLS handshake timeout" +4:38PM ERR ClusterUpdater failed error="conn check failed (3/5)" +5:33PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": context deadline exceeded" +5:33PM ERR ClusterUpdater failed error="conn check failed (1/5)" +5:33PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": context deadline exceeded - error from a previous attempt: http2: client connection lost" +5:33PM ERR ClusterUpdater failed error="conn check failed (2/5)" +5:34PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": net/http: TLS handshake timeout" +5:34PM ERR ClusterUpdater failed error="conn check failed (3/5)" +5:34PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": net/http: TLS handshake timeout" +5:34PM ERR ClusterUpdater failed error="conn check failed (4/5)" +5:34PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +5:34PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +9:51AM INF 🐶 K9s starting up... +9:51AM INF ✅ Kubernetes connectivity +10:17AM INF 🐶 K9s starting up... +10:17AM INF ✅ Kubernetes connectivity +10:17AM WRN log-reader canceled error="stream canceled context canceled for default/kubernetes-bootcamp-9bc58d867-g7l4h (kubernetes-bootcamp)" +1:36PM INF 🐶 K9s starting up... +1:36PM ERR Fail to locate metrics-server error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused" +1:36PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +1:36PM INF ✅ Kubernetes connectivity +1:36PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +1:36PM ERR Fail to load global/context configuration error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused\ncannot connect to context: minikube\nk8s connection failed for context: minikube" +1:36PM ERR Load cluster resources - No API server connection +1:36PM ERR failed to list contexts error="no connection" +1:36PM WRN Unable to dial discovery API error="no connection to dial" +1:36PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +1:36PM ERR Load cluster resources - No API server connection +1:36PM WRN Unable to dial discovery API error="no connection to dial" +1:36PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +1:36PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +1:37PM INF 🐶 K9s starting up... +1:37PM ERR Fail to locate metrics-server error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused" +1:37PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +1:37PM INF ✅ Kubernetes connectivity +1:37PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +1:37PM ERR Fail to load global/context configuration error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused\ncannot connect to context: minikube\nk8s connection failed for context: minikube" +1:37PM ERR Load cluster resources - No API server connection +1:37PM ERR failed to list contexts error="no connection" +1:37PM WRN Unable to dial discovery API error="no connection to dial" +1:37PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +1:37PM ERR Load cluster resources - No API server connection +1:37PM WRN Unable to dial discovery API error="no connection to dial" +1:38PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +1:38PM ERR ClusterUpdater failed error="conn check failed (1/5)" +1:38PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +1:38PM ERR ClusterUpdater failed error="conn check failed (2/5)" +1:38PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +1:38PM ERR ClusterUpdater failed error="conn check failed (3/5)" +1:38PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +1:38PM ERR ClusterUpdater failed error="conn check failed (4/5)" +1:38PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +1:38PM ERR Conn check failed (5/5). Bailing out! +1:38PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +1:38PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +1:41PM INF 🐶 K9s starting up... +1:41PM ERR Fail to locate metrics-server error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused" +1:41PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +1:41PM INF ✅ Kubernetes connectivity +1:41PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +1:41PM ERR Fail to load global/context configuration error="k9s config file \"/Users/matt/Library/Application Support/k9s/config.yaml\" load failed:\nAdditional property skin is not allowed\nGet \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused\ncannot connect to context: minikube\nk8s connection failed for context: minikube" +1:41PM ERR Load cluster resources - No API server connection +1:41PM ERR failed to list contexts error="no connection" +1:41PM WRN Unable to dial discovery API error="no connection to dial" +1:41PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +1:41PM ERR Load cluster resources - No API server connection +1:41PM WRN Unable to dial discovery API error="no connection to dial" +1:41PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +1:41PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +1:41PM INF 🐶 K9s starting up... +1:41PM ERR Fail to locate metrics-server error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused" +1:41PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +1:41PM INF ✅ Kubernetes connectivity +1:41PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +1:41PM ERR Fail to load global/context configuration error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused\ncannot connect to context: minikube\nk8s connection failed for context: minikube" +1:41PM ERR Load cluster resources - No API server connection +1:41PM ERR failed to list contexts error="no connection" +1:41PM WRN Unable to dial discovery API error="no connection to dial" +1:41PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +1:41PM ERR Load cluster resources - No API server connection +1:41PM WRN Unable to dial discovery API error="no connection to dial" +1:41PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +1:41PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +1:58PM INF 🐶 K9s starting up... +1:58PM ERR Fail to locate metrics-server error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused" +1:58PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +1:58PM INF ✅ Kubernetes connectivity +1:58PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +1:58PM ERR Fail to load global/context configuration error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused\ncannot connect to context: minikube\nk8s connection failed for context: minikube" +1:58PM ERR Load cluster resources - No API server connection +1:58PM ERR failed to list contexts error="no connection" +1:58PM WRN Unable to dial discovery API error="no connection to dial" +1:58PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +1:58PM ERR Load cluster resources - No API server connection +1:58PM WRN Unable to dial discovery API error="no connection to dial" +1:58PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +1:58PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +2:00PM INF 🐶 K9s starting up... +2:00PM ERR Fail to locate metrics-server error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:00PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:00PM INF ✅ Kubernetes connectivity +2:00PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +2:00PM ERR Fail to load global/context configuration error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused\ncannot connect to context: minikube\nk8s connection failed for context: minikube" +2:00PM ERR Load cluster resources - No API server connection +2:00PM ERR failed to list contexts error="no connection" +2:00PM WRN Unable to dial discovery API error="no connection to dial" +2:00PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:00PM ERR Load cluster resources - No API server connection +2:00PM WRN Unable to dial discovery API error="no connection to dial" +2:02PM INF 🐶 K9s starting up... +2:02PM ERR Fail to locate metrics-server error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:02PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:02PM INF ✅ Kubernetes connectivity +2:02PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +2:02PM ERR Fail to load global/context configuration error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused\ncannot connect to context: minikube\nk8s connection failed for context: minikube" +2:02PM ERR Load cluster resources - No API server connection +2:02PM ERR failed to list contexts error="no connection" +2:02PM WRN Unable to dial discovery API error="no connection to dial" +2:02PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:02PM ERR Load cluster resources - No API server connection +2:02PM WRN Unable to dial discovery API error="no connection to dial" +2:02PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:02PM WRN  Dial Failed! error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:02PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +2:02PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +2:02PM WRN Unable to validate namespace: "default". Using "default" as active namespace +2:02PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +2:02PM WRN  Dial Failed! error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:02PM WRN Fail CRDs load error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:02PM WRN  Dial Failed! error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:02PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:02PM ERR Cluster updater failed! error="conn check failed (1/5)" +2:02PM WRN Unable to dial discovery API error="no connection to dial" +2:02PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +2:02PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +2:02PM INF 🐶 K9s starting up... +2:02PM ERR Fail to locate metrics-server error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:02PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:02PM INF ✅ Kubernetes connectivity +2:02PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +2:02PM ERR Fail to load global/context configuration error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused\ncannot connect to context: minikube\nk8s connection failed for context: minikube" +2:02PM ERR Load cluster resources - No API server connection +2:02PM ERR failed to list contexts error="no connection" +2:02PM WRN Unable to dial discovery API error="no connection to dial" +2:02PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:02PM ERR Load cluster resources - No API server connection +2:02PM WRN Unable to dial discovery API error="no connection to dial" +2:02PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:02PM WRN  Dial Failed! error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:02PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +2:02PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +2:02PM WRN Unable to validate namespace: "default". Using "default" as active namespace +2:02PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +2:02PM WRN  Dial Failed! error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:02PM WRN Fail CRDs load error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:02PM WRN  Dial Failed! error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:02PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:02PM ERR Cluster updater failed! error="conn check failed (1/5)" +2:02PM WRN Unable to dial discovery API error="no connection to dial" +2:02PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:02PM WRN  Dial Failed! error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:02PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +2:02PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +2:02PM WRN Unable to validate namespace: "default". Using "default" as active namespace +2:02PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +2:02PM WRN  Dial Failed! error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:02PM WRN Fail CRDs load error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:02PM WRN  Dial Failed! error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:02PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:02PM ERR Cluster updater failed! error="conn check failed (2/5)" +2:02PM WRN Unable to dial discovery API error="no connection to dial" +2:02PM INF 🐶 K9s starting up... +2:02PM ERR Fail to locate metrics-server error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:02PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:02PM INF ✅ Kubernetes connectivity +2:02PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +2:02PM ERR Fail to load global/context configuration error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused\ncannot connect to context: minikube\nk8s connection failed for context: minikube" +2:02PM ERR Load cluster resources - No API server connection +2:02PM ERR failed to list contexts error="no connection" +2:02PM WRN Unable to dial discovery API error="no connection to dial" +2:02PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:02PM ERR Load cluster resources - No API server connection +2:02PM WRN Unable to dial discovery API error="no connection to dial" +2:03PM INF 🐶 K9s starting up... +2:03PM ERR Fail to locate metrics-server error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:03PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:03PM INF ✅ Kubernetes connectivity +2:03PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +2:03PM ERR Fail to load global/context configuration error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused\ncannot connect to context: minikube\nk8s connection failed for context: minikube" +2:03PM ERR Load cluster resources - No API server connection +2:03PM ERR failed to list contexts error="no connection" +2:03PM WRN Unable to dial discovery API error="no connection to dial" +2:03PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:03PM ERR Load cluster resources - No API server connection +2:03PM WRN Unable to dial discovery API error="no connection to dial" +2:03PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:03PM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:03PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:03PM ERR ClusterUpdater failed error="conn check failed (2/5)" +2:03PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:03PM ERR ClusterUpdater failed error="conn check failed (3/5)" +2:03PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:03PM ERR ClusterUpdater failed error="conn check failed (4/5)" +2:03PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +2:03PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +2:04PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +2:04PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +2:04PM INF 🐶 K9s starting up... +2:04PM ERR Fail to locate metrics-server error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:04PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:04PM INF ✅ Kubernetes connectivity +2:04PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +2:04PM ERR Fail to load global/context configuration error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused\ncannot connect to context: minikube\nk8s connection failed for context: minikube" +2:04PM ERR Load cluster resources - No API server connection +2:04PM ERR failed to list contexts error="no connection" +2:04PM WRN Unable to dial discovery API error="no connection to dial" +2:04PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:04PM ERR Load cluster resources - No API server connection +2:04PM WRN Unable to dial discovery API error="no connection to dial" +2:04PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +2:04PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +2:04PM INF 🐶 K9s starting up... +2:04PM ERR Fail to locate metrics-server error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:04PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:04PM INF ✅ Kubernetes connectivity +2:04PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +2:04PM ERR Fail to load global/context configuration error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused\ncannot connect to context: minikube\nk8s connection failed for context: minikube" +2:04PM ERR Load cluster resources - No API server connection +2:04PM ERR failed to list contexts error="no connection" +2:04PM WRN Unable to dial discovery API error="no connection to dial" +2:04PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:04PM ERR Load cluster resources - No API server connection +2:04PM WRN Unable to dial discovery API error="no connection to dial" +2:04PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:04PM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:04PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:04PM ERR ClusterUpdater failed error="conn check failed (2/5)" +2:04PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:04PM ERR ClusterUpdater failed error="conn check failed (3/5)" +2:04PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:04PM ERR ClusterUpdater failed error="conn check failed (4/5)" +2:04PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:04PM ERR Conn check failed (5/5). Bailing out! +2:04PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +2:04PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +2:33PM INF 🐶 K9s starting up... +2:33PM ERR Fail to locate metrics-server error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:33PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:33PM INF ✅ Kubernetes connectivity +2:33PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +2:33PM ERR Fail to load global/context configuration error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused\ncannot connect to context: minikube\nk8s connection failed for context: minikube" +2:33PM ERR Load cluster resources - No API server connection +2:33PM ERR failed to list contexts error="no connection" +2:33PM WRN Unable to dial discovery API error="no connection to dial" +2:33PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:33PM WRN Unable to dial discovery API error="no connection to dial" +2:33PM ERR Load cluster resources - No API server connection +2:33PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:33PM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:33PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:33PM ERR ClusterUpdater failed error="conn check failed (2/5)" +2:33PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:33PM ERR ClusterUpdater failed error="conn check failed (3/5)" +2:33PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:33PM ERR ClusterUpdater failed error="conn check failed (4/5)" +2:33PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +2:33PM ERR Conn check failed (5/5). Bailing out! +2:33PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +2:33PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:06PM INF 🐶 K9s starting up... +3:06PM ERR Fail to locate metrics-server error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:06PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:06PM INF ✅ Kubernetes connectivity +3:06PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:06PM ERR Fail to load global/context configuration error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused\ncannot connect to context: minikube\nk8s connection failed for context: minikube" +3:06PM ERR Load cluster resources - No API server connection +3:06PM ERR failed to list contexts error="no connection" +3:06PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:06PM WRN Unable to dial discovery API error="no connection to dial" +3:06PM ERR Load cluster resources - No API server connection +3:06PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:06PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:07PM INF 🐶 K9s starting up... +3:07PM ERR Fail to locate metrics-server error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:07PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:07PM INF ✅ Kubernetes connectivity +3:07PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:07PM ERR Fail to load global/context configuration error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused\ncannot connect to context: minikube\nk8s connection failed for context: minikube" +3:07PM ERR Load cluster resources - No API server connection +3:07PM ERR failed to list contexts error="no connection" +3:07PM WRN Unable to dial discovery API error="no connection to dial" +3:07PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:07PM ERR Load cluster resources - No API server connection +3:07PM WRN Unable to dial discovery API error="no connection to dial" +3:07PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:07PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:07PM INF 🐶 K9s starting up... +3:07PM ERR Fail to locate metrics-server error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:07PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:07PM INF ✅ Kubernetes connectivity +3:07PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:07PM ERR Fail to load global/context configuration error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused\ncannot connect to context: minikube\nk8s connection failed for context: minikube" +3:07PM ERR Load cluster resources - No API server connection +3:07PM ERR failed to list contexts error="no connection" +3:07PM WRN Unable to dial discovery API error="no connection to dial" +3:07PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:07PM ERR Load cluster resources - No API server connection +3:07PM WRN Unable to dial discovery API error="no connection to dial" +3:07PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:07PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:08PM INF 🐶 K9s starting up... +3:08PM ERR Fail to locate metrics-server error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:08PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:08PM INF ✅ Kubernetes connectivity +3:08PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:08PM ERR Fail to load global/context configuration error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused\ncannot connect to context: minikube\nk8s connection failed for context: minikube" +3:08PM ERR Load cluster resources - No API server connection +3:08PM ERR failed to list contexts error="no connection" +3:08PM WRN Unable to dial discovery API error="no connection to dial" +3:08PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:08PM ERR Load cluster resources - No API server connection +3:08PM WRN Unable to dial discovery API error="no connection to dial" +3:08PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:08PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:18PM INF 🐶 K9s starting up... +3:18PM ERR Fail to locate metrics-server error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:18PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:18PM INF ✅ Kubernetes connectivity +3:18PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:18PM ERR Fail to load global/context configuration error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused\ncannot connect to context: minikube\nk8s connection failed for context: minikube" +3:18PM ERR Load cluster resources - No API server connection +3:18PM ERR failed to list contexts error="no connection" +3:18PM WRN Unable to dial discovery API error="no connection to dial" +3:18PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:18PM ERR Load cluster resources - No API server connection +3:18PM WRN Unable to dial discovery API error="no connection to dial" +3:18PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:18PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:19PM INF 🐶 K9s starting up... +3:19PM ERR Fail to locate metrics-server error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:19PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:19PM INF ✅ Kubernetes connectivity +3:19PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:19PM ERR Fail to load global/context configuration error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused\ncannot connect to context: minikube\nk8s connection failed for context: minikube" +3:19PM ERR Load cluster resources - No API server connection +3:19PM ERR failed to list contexts error="no connection" +3:19PM WRN Unable to dial discovery API error="no connection to dial" +3:19PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:19PM ERR Load cluster resources - No API server connection +3:19PM WRN Unable to dial discovery API error="no connection to dial" +3:19PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:19PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:20PM INF 🐶 K9s starting up... +3:20PM ERR Fail to locate metrics-server error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:20PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:20PM INF ✅ Kubernetes connectivity +3:20PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:20PM ERR Fail to load global/context configuration error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused\ncannot connect to context: minikube\nk8s connection failed for context: minikube" +3:20PM ERR Load cluster resources - No API server connection +3:20PM ERR failed to list contexts error="no connection" +3:20PM WRN Unable to dial discovery API error="no connection to dial" +3:20PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:20PM ERR Load cluster resources - No API server connection +3:20PM WRN Unable to dial discovery API error="no connection to dial" +3:20PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:20PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:20PM INF 🐶 K9s starting up... +3:20PM ERR Fail to locate metrics-server error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:20PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:20PM INF ✅ Kubernetes connectivity +3:20PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:20PM ERR Fail to load global/context configuration error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused\ncannot connect to context: minikube\nk8s connection failed for context: minikube" +3:20PM ERR Load cluster resources - No API server connection +3:20PM ERR failed to list contexts error="no connection" +3:20PM WRN Unable to dial discovery API error="no connection to dial" +3:20PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:20PM ERR Load cluster resources - No API server connection +3:20PM WRN Unable to dial discovery API error="no connection to dial" +3:20PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:20PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:20PM INF 🐶 K9s starting up... +3:20PM ERR Fail to locate metrics-server error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:20PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:20PM INF ✅ Kubernetes connectivity +3:20PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:20PM ERR Fail to load global/context configuration error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused\ncannot connect to context: minikube\nk8s connection failed for context: minikube" +3:20PM ERR Load cluster resources - No API server connection +3:20PM ERR failed to list contexts error="no connection" +3:20PM WRN Unable to dial discovery API error="no connection to dial" +3:20PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:20PM ERR Load cluster resources - No API server connection +3:20PM WRN Unable to dial discovery API error="no connection to dial" +3:20PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:20PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:20PM INF 🐶 K9s starting up... +3:20PM ERR Fail to locate metrics-server error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:20PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:20PM INF ✅ Kubernetes connectivity +3:20PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:20PM ERR Fail to load global/context configuration error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused\ncannot connect to context: minikube\nk8s connection failed for context: minikube" +3:20PM ERR Load cluster resources - No API server connection +3:20PM ERR failed to list contexts error="no connection" +3:20PM WRN Unable to dial discovery API error="no connection to dial" +3:20PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:20PM ERR Load cluster resources - No API server connection +3:20PM WRN Unable to dial discovery API error="no connection to dial" +3:21PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:21PM WRN  Dial Failed! error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:21PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:21PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:21PM WRN Unable to validate namespace: "default". Using "default" as active namespace +3:21PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:21PM WRN  Dial Failed! error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:21PM WRN Fail CRDs load error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:21PM WRN  Dial Failed! error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:21PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:21PM ERR Cluster updater failed! error="conn check failed (1/5)" +3:21PM WRN Unable to dial discovery API error="no connection to dial" +3:21PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:21PM WRN  Dial Failed! error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:21PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:21PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:21PM WRN Unable to validate namespace: "default". Using "default" as active namespace +3:21PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:21PM WRN  Dial Failed! error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:21PM WRN Fail CRDs load error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:21PM WRN  Dial Failed! error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:21PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:21PM ERR Cluster updater failed! error="conn check failed (2/5)" +3:21PM WRN Unable to dial discovery API error="no connection to dial" +3:21PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:21PM WRN  Dial Failed! error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:21PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:21PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:21PM WRN Unable to validate namespace: "default". Using "default" as active namespace +3:21PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:21PM WRN  Dial Failed! error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:21PM WRN Fail CRDs load error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:21PM WRN  Dial Failed! error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:21PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:21PM ERR Cluster updater failed! error="conn check failed (3/5)" +3:21PM WRN Unable to dial discovery API error="no connection to dial" +3:23PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:23PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:23PM INF 🐶 K9s starting up... +3:23PM ERR Fail to locate metrics-server error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:23PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:23PM INF ✅ Kubernetes connectivity +3:23PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:23PM ERR Fail to load global/context configuration error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused\ncannot connect to context: minikube\nk8s connection failed for context: minikube" +3:23PM ERR Load cluster resources - No API server connection +3:23PM ERR failed to list contexts error="no connection" +3:23PM WRN Unable to dial discovery API error="no connection to dial" +3:23PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:23PM ERR Load cluster resources - No API server connection +3:23PM WRN Unable to dial discovery API error="no connection to dial" +3:23PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:23PM WRN  Dial Failed! error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:23PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:23PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:23PM WRN Unable to validate namespace: "default". Using "default" as active namespace +3:23PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:23PM WRN  Dial Failed! error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:23PM WRN Fail CRDs load error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:23PM WRN  Dial Failed! error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:23PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:23PM ERR Cluster updater failed! error="conn check failed (1/5)" +3:23PM WRN Unable to dial discovery API error="no connection to dial" +3:23PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:23PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:23PM INF 🐶 K9s starting up... +3:23PM ERR Fail to locate metrics-server error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:23PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:23PM INF ✅ Kubernetes connectivity +3:23PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:23PM ERR Fail to load global/context configuration error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused\ncannot connect to context: minikube\nk8s connection failed for context: minikube" +3:23PM ERR Load cluster resources - No API server connection +3:23PM ERR failed to list contexts error="no connection" +3:23PM WRN Unable to dial discovery API error="no connection to dial" +3:23PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:23PM ERR Load cluster resources - No API server connection +3:23PM WRN Unable to dial discovery API error="no connection to dial" +3:23PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:23PM WRN  Dial Failed! error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:23PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:23PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:23PM WRN Unable to validate namespace: "default". Using "default" as active namespace +3:23PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:23PM WRN  Dial Failed! error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:23PM WRN Fail CRDs load error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:23PM WRN  Dial Failed! error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:23PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:23PM ERR Cluster updater failed! error="conn check failed (1/5)" +3:23PM WRN Unable to dial discovery API error="no connection to dial" +3:24PM INF 🐶 K9s starting up... +3:24PM ERR Fail to locate metrics-server error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:24PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:24PM INF ✅ Kubernetes connectivity +3:24PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:24PM ERR Fail to load global/context configuration error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused\ncannot connect to context: minikube\nk8s connection failed for context: minikube" +3:24PM ERR Load cluster resources - No API server connection +3:24PM ERR failed to list contexts error="no connection" +3:24PM WRN Unable to dial discovery API error="no connection to dial" +3:24PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:24PM ERR Load cluster resources - No API server connection +3:24PM WRN Unable to dial discovery API error="no connection to dial" +3:24PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:24PM WRN  Dial Failed! error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:24PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:24PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:24PM WRN Unable to validate namespace: "default". Using "default" as active namespace +3:24PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:24PM WRN  Dial Failed! error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:24PM WRN Fail CRDs load error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:24PM WRN  Dial Failed! error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:24PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:24PM ERR Cluster updater failed! error="conn check failed (1/5)" +3:24PM WRN Unable to dial discovery API error="no connection to dial" +3:24PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:24PM WRN  Dial Failed! error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:24PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:24PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:24PM WRN Unable to validate namespace: "default". Using "default" as active namespace +3:24PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:24PM WRN  Dial Failed! error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:24PM WRN Fail CRDs load error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:24PM WRN  Dial Failed! error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:24PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:24PM ERR Cluster updater failed! error="conn check failed (2/5)" +3:24PM WRN Unable to dial discovery API error="no connection to dial" +3:24PM INF 🐶 K9s starting up... +3:24PM ERR Fail to locate metrics-server error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:24PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:24PM INF ✅ Kubernetes connectivity +3:24PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:24PM ERR Fail to load global/context configuration error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused\ncannot connect to context: minikube\nk8s connection failed for context: minikube" +3:24PM ERR Load cluster resources - No API server connection +3:24PM ERR failed to list contexts error="no connection" +3:24PM WRN Unable to dial discovery API error="no connection to dial" +3:24PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:24PM ERR Load cluster resources - No API server connection +3:24PM WRN Unable to dial discovery API error="no connection to dial" +3:25PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:25PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:25PM INF 🐶 K9s starting up... +3:25PM ERR Fail to locate metrics-server error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:25PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:25PM INF ✅ Kubernetes connectivity +3:25PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:25PM ERR Fail to load global/context configuration error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused\ncannot connect to context: minikube\nk8s connection failed for context: minikube" +3:25PM ERR Load cluster resources - No API server connection +3:25PM ERR failed to list contexts error="no connection" +3:25PM WRN Unable to dial discovery API error="no connection to dial" +3:25PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:25PM ERR Load cluster resources - No API server connection +3:25PM WRN Unable to dial discovery API error="no connection to dial" +3:25PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:25PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:25PM INF 🐶 K9s starting up... +3:25PM ERR Fail to locate metrics-server error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:25PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:25PM INF ✅ Kubernetes connectivity +3:25PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:25PM ERR Fail to load global/context configuration error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused\ncannot connect to context: minikube\nk8s connection failed for context: minikube" +3:25PM ERR Load cluster resources - No API server connection +3:25PM ERR failed to list contexts error="no connection" +3:25PM WRN Unable to dial discovery API error="no connection to dial" +3:25PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:25PM ERR Load cluster resources - No API server connection +3:25PM WRN Unable to dial discovery API error="no connection to dial" +3:25PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:25PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:25PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:25PM ERR ClusterUpdater failed error="conn check failed (2/5)" +3:25PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:25PM ERR ClusterUpdater failed error="conn check failed (3/5)" +3:25PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:25PM ERR ClusterUpdater failed error="conn check failed (4/5)" +3:25PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:25PM ERR Conn check failed (5/5). Bailing out! +3:25PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:25PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:25PM INF 🐶 K9s starting up... +3:25PM ERR Fail to locate metrics-server error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:25PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:25PM INF ✅ Kubernetes connectivity +3:25PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:25PM ERR Fail to load global/context configuration error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused\ncannot connect to context: minikube\nk8s connection failed for context: minikube" +3:25PM ERR Load cluster resources - No API server connection +3:25PM ERR failed to list contexts error="no connection" +3:25PM WRN Unable to dial discovery API error="no connection to dial" +3:25PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:25PM ERR Load cluster resources - No API server connection +3:25PM WRN Unable to dial discovery API error="no connection to dial" +3:25PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:25PM WRN  Dial Failed! error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:25PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:25PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:25PM WRN Unable to validate namespace: "default". Using "default" as active namespace +3:25PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:25PM WRN  Dial Failed! error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:25PM WRN Fail CRDs load error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:25PM WRN  Dial Failed! error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:25PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:25PM ERR Cluster updater failed! error="conn check failed (1/5)" +3:25PM WRN Unable to dial discovery API error="no connection to dial" +3:25PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:25PM WRN  Dial Failed! error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:25PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:25PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:25PM WRN Unable to validate namespace: "default". Using "default" as active namespace +3:25PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:25PM WRN  Dial Failed! error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:25PM WRN Fail CRDs load error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:25PM WRN  Dial Failed! error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:25PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:25PM ERR Cluster updater failed! error="conn check failed (2/5)" +3:25PM WRN Unable to dial discovery API error="no connection to dial" +3:25PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:25PM WRN  Dial Failed! error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:25PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:25PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:25PM WRN Unable to validate namespace: "default". Using "default" as active namespace +3:25PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:25PM WRN  Dial Failed! error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:25PM WRN Fail CRDs load error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:25PM WRN  Dial Failed! error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:25PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:25PM ERR Cluster updater failed! error="conn check failed (3/5)" +3:25PM WRN Unable to dial discovery API error="no connection to dial" +3:25PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:25PM WRN  Dial Failed! error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:25PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:25PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:25PM WRN Unable to validate namespace: "default". Using "default" as active namespace +3:25PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:25PM WRN  Dial Failed! error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:25PM WRN Fail CRDs load error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:25PM WRN  Dial Failed! error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:25PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:25PM ERR Cluster updater failed! error="conn check failed (4/5)" +3:25PM WRN Unable to dial discovery API error="no connection to dial" +3:25PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:25PM WRN  Dial Failed! error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:25PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:25PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:25PM WRN Unable to validate namespace: "default". Using "default" as active namespace +3:25PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:25PM WRN  Dial Failed! error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:25PM WRN Fail CRDs load error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:25PM WRN  Dial Failed! error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:25PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:25PM ERR Conn check failed (5/5). Bailing out! +3:25PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:25PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:25PM WRN Unable to dial discovery API error="no connection to dial" +3:25PM INF 🐶 K9s starting up... +3:25PM ERR Fail to locate metrics-server error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:25PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:25PM INF ✅ Kubernetes connectivity +3:25PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:25PM ERR Fail to load global/context configuration error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused\ncannot connect to context: minikube\nk8s connection failed for context: minikube" +3:25PM ERR Load cluster resources - No API server connection +3:25PM ERR failed to list contexts error="no connection" +3:25PM WRN Unable to dial discovery API error="no connection to dial" +3:25PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:25PM ERR Load cluster resources - No API server connection +3:25PM WRN Unable to dial discovery API error="no connection to dial" +3:25PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:25PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:25PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:25PM ERR ClusterUpdater failed error="conn check failed (2/5)" +3:25PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:25PM ERR ClusterUpdater failed error="conn check failed (3/5)" +3:25PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:25PM ERR ClusterUpdater failed error="conn check failed (4/5)" +3:26PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:26PM ERR Conn check failed (5/5). Bailing out! +3:26PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:26PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:26PM INF 🐶 K9s starting up... +3:26PM ERR Fail to locate metrics-server error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:26PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:26PM INF ✅ Kubernetes connectivity +3:26PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:26PM ERR Fail to load global/context configuration error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused\ncannot connect to context: minikube\nk8s connection failed for context: minikube" +3:26PM ERR Load cluster resources - No API server connection +3:26PM ERR failed to list contexts error="no connection" +3:26PM WRN Unable to dial discovery API error="no connection to dial" +3:26PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:26PM ERR Load cluster resources - No API server connection +3:26PM WRN Unable to dial discovery API error="no connection to dial" +3:26PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:26PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:26PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:26PM ERR ClusterUpdater failed error="conn check failed (2/5)" +3:26PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:26PM ERR ClusterUpdater failed error="conn check failed (3/5)" +3:26PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:26PM ERR ClusterUpdater failed error="conn check failed (4/5)" +3:26PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:26PM ERR Conn check failed (5/5). Bailing out! +3:26PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:26PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:27PM INF 🐶 K9s starting up... +3:27PM ERR Fail to locate metrics-server error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:27PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:27PM INF ✅ Kubernetes connectivity +3:27PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:27PM ERR Fail to load global/context configuration error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused\ncannot connect to context: minikube\nk8s connection failed for context: minikube" +3:27PM ERR Load cluster resources - No API server connection +3:27PM ERR failed to list contexts error="no connection" +3:27PM WRN Unable to dial discovery API error="no connection to dial" +3:27PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:27PM ERR Load cluster resources - No API server connection +3:27PM WRN Unable to dial discovery API error="no connection to dial" +3:27PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:27PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:27PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:27PM ERR ClusterUpdater failed error="conn check failed (2/5)" +3:27PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:27PM ERR ClusterUpdater failed error="conn check failed (3/5)" +3:27PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:27PM ERR ClusterUpdater failed error="conn check failed (4/5)" +3:27PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:27PM ERR Conn check failed (5/5). Bailing out! +3:27PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:27PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:27PM INF 🐶 K9s starting up... +3:27PM ERR Fail to locate metrics-server error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:27PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:27PM INF ✅ Kubernetes connectivity +3:27PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:27PM ERR Fail to load global/context configuration error="Get \"https://127.0.0.1:64529/api\": dial tcp 127.0.0.1:64529: connect: connection refused\ncannot connect to context: minikube\nk8s connection failed for context: minikube" +3:27PM ERR Load cluster resources - No API server connection +3:27PM ERR failed to list contexts error="no connection" +3:27PM WRN Unable to dial discovery API error="no connection to dial" +3:27PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:27PM ERR Load cluster resources - No API server connection +3:27PM WRN Unable to dial discovery API error="no connection to dial" +3:27PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:27PM WRN  Dial Failed! error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:27PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:27PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:27PM WRN Unable to validate namespace: "default". Using "default" as active namespace +3:27PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:27PM WRN  Dial Failed! error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:27PM WRN Fail CRDs load error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:27PM WRN  Dial Failed! error="Post \"https://127.0.0.1:64529/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:27PM ERR can't connect to cluster error="Get \"https://127.0.0.1:64529/version?timeout=15s\": dial tcp 127.0.0.1:64529: connect: connection refused" +3:27PM ERR Cluster updater failed! error="conn check failed (1/5)" +3:27PM WRN Unable to dial discovery API error="no connection to dial" +3:30PM ERR can't connect to cluster error="Get \"https://127.0.0.1:55312/version?timeout=15s\": EOF" +3:30PM WRN  Dial Failed! error="Post \"https://127.0.0.1:55312/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": EOF" +3:30PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:30PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:30PM WRN Unable to validate namespace: "default". Using "default" as active namespace +3:30PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:30PM WRN  Dial Failed! error="Post \"https://127.0.0.1:55312/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": EOF" +3:30PM WRN Fail CRDs load error="Post \"https://127.0.0.1:55312/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": EOF" +3:30PM WRN  Dial Failed! error="Post \"https://127.0.0.1:55312/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": EOF" +3:31PM ERR can't connect to cluster error="Get \"https://127.0.0.1:55312/version?timeout=15s\": EOF" +3:31PM INF 🐶 K9s starting up... +3:32PM ERR Fail to locate metrics-server error="Get \"https://127.0.0.1:55312/api\": EOF" +3:32PM INF 🐶 K9s starting up... +3:32PM ERR Fail to locate metrics-server error="Get \"https://127.0.0.1:55312/api\": EOF" +3:32PM ERR can't connect to cluster error="Get \"https://127.0.0.1:55312/version?timeout=15s\": EOF" +3:32PM INF ✅ Kubernetes connectivity +3:32PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:32PM ERR Fail to load global/context configuration error="Get \"https://127.0.0.1:55312/api\": EOF\ncannot connect to context: minikube\nk8s connection failed for context: minikube" +3:32PM ERR Load cluster resources - No API server connection +3:32PM ERR failed to list contexts error="no connection" +3:32PM WRN Unable to dial discovery API error="no connection to dial" +3:32PM ERR can't connect to cluster error="Get \"https://127.0.0.1:55312/version?timeout=15s\": EOF" +3:32PM ERR Load cluster resources - No API server connection +3:32PM WRN Unable to dial discovery API error="no connection to dial" +3:33PM ERR can't connect to cluster error="Get \"https://127.0.0.1:55312/version?timeout=15s\": EOF" +3:33PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:33PM ERR can't connect to cluster error="Get \"https://127.0.0.1:55312/version?timeout=15s\": EOF" +3:33PM ERR ClusterUpdater failed error="conn check failed (2/5)" +3:33PM ERR can't connect to cluster error="Get \"https://127.0.0.1:55312/version?timeout=15s\": EOF" +3:33PM ERR ClusterUpdater failed error="conn check failed (3/5)" +3:33PM ERR can't connect to cluster error="Get \"https://127.0.0.1:55312/version?timeout=15s\": EOF" +3:33PM ERR ClusterUpdater failed error="conn check failed (4/5)" +3:33PM ERR can't connect to cluster error="Get \"https://127.0.0.1:55312/version?timeout=15s\": EOF" +3:33PM ERR Conn check failed (5/5). Bailing out! +3:33PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:33PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:35PM INF 🐶 K9s starting up... +10:58AM INF 🐶 K9s starting up... +10:58AM ERR Fail to locate metrics-server error="Get \"https://127.0.0.1:56172/api\": dial tcp 127.0.0.1:56172: connect: connection refused" +10:58AM ERR can't connect to cluster error="Get \"https://127.0.0.1:56172/version?timeout=15s\": dial tcp 127.0.0.1:56172: connect: connection refused" +10:58AM INF ✅ Kubernetes connectivity +10:58AM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +10:58AM ERR Fail to load global/context configuration error="Get \"https://127.0.0.1:56172/api\": dial tcp 127.0.0.1:56172: connect: connection refused\ncannot connect to context: minikube\nk8s connection failed for context: minikube" +10:58AM ERR Load cluster resources - No API server connection +10:58AM ERR failed to list contexts error="no connection" +10:58AM WRN Unable to dial discovery API error="no connection to dial" +10:58AM ERR can't connect to cluster error="Get \"https://127.0.0.1:56172/version?timeout=15s\": dial tcp 127.0.0.1:56172: connect: connection refused" +10:58AM ERR Load cluster resources - No API server connection +10:58AM WRN Unable to dial discovery API error="no connection to dial" +10:59AM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +10:59AM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +10:59AM INF 🐶 K9s starting up... +10:59AM ERR Fail to locate metrics-server error="Get \"https://127.0.0.1:56172/api\": dial tcp 127.0.0.1:56172: connect: connection refused" +10:59AM ERR can't connect to cluster error="Get \"https://127.0.0.1:56172/version?timeout=15s\": dial tcp 127.0.0.1:56172: connect: connection refused" +10:59AM INF ✅ Kubernetes connectivity +10:59AM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +10:59AM ERR Fail to load global/context configuration error="Get \"https://127.0.0.1:56172/api\": dial tcp 127.0.0.1:56172: connect: connection refused\ncannot connect to context: minikube\nk8s connection failed for context: minikube" +10:59AM ERR Load cluster resources - No API server connection +10:59AM ERR failed to list contexts error="no connection" +10:59AM WRN Unable to dial discovery API error="no connection to dial" +10:59AM ERR can't connect to cluster error="Get \"https://127.0.0.1:56172/version?timeout=15s\": dial tcp 127.0.0.1:56172: connect: connection refused" +10:59AM ERR Load cluster resources - No API server connection +10:59AM WRN Unable to dial discovery API error="no connection to dial" +10:59AM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +10:59AM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +10:59AM INF 🐶 K9s starting up... +10:59AM ERR Fail to locate metrics-server error="Get \"https://127.0.0.1:56172/api\": dial tcp 127.0.0.1:56172: connect: connection refused" +10:59AM ERR can't connect to cluster error="Get \"https://127.0.0.1:56172/version?timeout=15s\": dial tcp 127.0.0.1:56172: connect: connection refused" +10:59AM INF ✅ Kubernetes connectivity +10:59AM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +10:59AM ERR Fail to load global/context configuration error="Get \"https://127.0.0.1:56172/api\": dial tcp 127.0.0.1:56172: connect: connection refused\ncannot connect to context: minikube\nk8s connection failed for context: minikube" +10:59AM ERR Load cluster resources - No API server connection +10:59AM ERR failed to list contexts error="no connection" +10:59AM WRN Unable to dial discovery API error="no connection to dial" +10:59AM ERR can't connect to cluster error="Get \"https://127.0.0.1:56172/version?timeout=15s\": dial tcp 127.0.0.1:56172: connect: connection refused" +10:59AM ERR Load cluster resources - No API server connection +10:59AM WRN Unable to dial discovery API error="no connection to dial" +10:59AM ERR can't connect to cluster error="Get \"https://127.0.0.1:56172/version?timeout=15s\": dial tcp 127.0.0.1:56172: connect: connection refused" +10:59AM WRN  Dial Failed! error="Post \"https://127.0.0.1:56172/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:56172: connect: connection refused" +10:59AM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +10:59AM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +10:59AM WRN Unable to validate namespace: "default". Using "default" as active namespace +10:59AM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +10:59AM WRN  Dial Failed! error="Post \"https://127.0.0.1:56172/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:56172: connect: connection refused" +10:59AM WRN Fail CRDs load error="Post \"https://127.0.0.1:56172/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:56172: connect: connection refused" +10:59AM WRN  Dial Failed! error="Post \"https://127.0.0.1:56172/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:56172: connect: connection refused" +10:59AM ERR can't connect to cluster error="Get \"https://127.0.0.1:56172/version?timeout=15s\": dial tcp 127.0.0.1:56172: connect: connection refused" +10:59AM ERR Cluster updater failed! error="conn check failed (1/5)" +10:59AM WRN Unable to dial discovery API error="no connection to dial" +10:59AM ERR can't connect to cluster error="Get \"https://127.0.0.1:56172/version?timeout=15s\": dial tcp 127.0.0.1:56172: connect: connection refused" +10:59AM WRN  Dial Failed! error="Post \"https://127.0.0.1:56172/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:56172: connect: connection refused" +10:59AM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +10:59AM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +10:59AM WRN Unable to validate namespace: "default". Using "default" as active namespace +10:59AM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +10:59AM WRN  Dial Failed! error="Post \"https://127.0.0.1:56172/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:56172: connect: connection refused" +10:59AM WRN Fail CRDs load error="Post \"https://127.0.0.1:56172/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:56172: connect: connection refused" +10:59AM WRN  Dial Failed! error="Post \"https://127.0.0.1:56172/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:56172: connect: connection refused" +10:59AM ERR can't connect to cluster error="Get \"https://127.0.0.1:56172/version?timeout=15s\": dial tcp 127.0.0.1:56172: connect: connection refused" +10:59AM ERR Cluster updater failed! error="conn check failed (2/5)" +10:59AM WRN Unable to dial discovery API error="no connection to dial" +10:59AM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +10:59AM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +11:57AM INF 🐶 K9s starting up... +11:57AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +11:57AM INF ✅ Kubernetes connectivity +11:57AM INF 🐶 K9s starting up... +11:57AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +11:57AM INF ✅ Kubernetes connectivity +12:22PM ERR can't connect to cluster error="Get \"https://127.0.0.1:50977/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +12:22PM ERR ClusterUpdater failed error="conn check failed (1/5)" +12:23PM ERR can't connect to cluster error="Get \"https://127.0.0.1:50977/version?timeout=15s\": net/http: TLS handshake timeout - error from a previous attempt: http2: client connection lost" +12:23PM ERR ClusterUpdater failed error="conn check failed (2/5)" +12:31PM ERR can't connect to cluster error="Get \"https://127.0.0.1:50977/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +12:31PM ERR ClusterUpdater failed error="conn check failed (1/5)" +12:32PM ERR can't connect to cluster error="Get \"https://127.0.0.1:50977/version?timeout=15s\": net/http: TLS handshake timeout" +12:32PM ERR ClusterUpdater failed error="conn check failed (2/5)" +12:34PM ERR can't connect to cluster error="Get \"https://127.0.0.1:50977/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +12:34PM ERR ClusterUpdater failed error="conn check failed (1/5)" +12:35PM ERR can't connect to cluster error="Get \"https://127.0.0.1:50977/version?timeout=15s\": net/http: TLS handshake timeout" +12:35PM ERR ClusterUpdater failed error="conn check failed (2/5)" +1:04PM ERR can't connect to cluster error="Get \"https://127.0.0.1:50977/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +1:04PM ERR ClusterUpdater failed error="conn check failed (1/5)" +1:04PM ERR can't connect to cluster error="Get \"https://127.0.0.1:50977/version?timeout=15s\": net/http: TLS handshake timeout - error from a previous attempt: http2: client connection lost" +1:04PM ERR ClusterUpdater failed error="conn check failed (2/5)" +1:05PM ERR can't connect to cluster error="Get \"https://127.0.0.1:50977/version?timeout=15s\": net/http: TLS handshake timeout" +1:05PM ERR ClusterUpdater failed error="conn check failed (3/5)" +1:05PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +1:05PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +1:43PM INF 🐶 K9s starting up... +1:43PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +1:43PM INF ✅ Kubernetes connectivity +2:52PM ERR can't connect to cluster error="Get \"https://127.0.0.1:50977/version?timeout=15s\": context deadline exceeded" +2:52PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:50PM ERR can't connect to cluster error="Get \"https://127.0.0.1:50977/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +4:50PM ERR ClusterUpdater failed error="conn check failed (1/5)" +5:08PM ERR can't connect to cluster error="Get \"https://127.0.0.1:50977/version?timeout=15s\": net/http: TLS handshake timeout" +5:08PM ERR ClusterUpdater failed error="conn check failed (2/5)" +5:08PM ERR can't connect to cluster error="Get \"https://127.0.0.1:50977/version?timeout=15s\": net/http: TLS handshake timeout" +5:08PM ERR ClusterUpdater failed error="conn check failed (3/5)" +5:08PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +5:08PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:52PM INF 🐶 K9s starting up... +3:52PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +3:52PM INF ✅ Kubernetes connectivity +4:00PM WRN log-reader canceled error="stream canceled context canceled for default/kubernetes-bootcamp-9bc58d867-k4kxg (kubernetes-bootcamp)" +4:00PM ERR Command failed error="exit status 1" +4:00PM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default kubernetes-bootcamp-9bc58d867-k4kxg -c kubernetes-bootcamp": exit status 1 + error="exit status 1\n" +4:00PM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +6:12PM ERR can't connect to cluster error="Get \"https://127.0.0.1:50977/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +6:12PM ERR ClusterUpdater failed error="conn check failed (1/5)" +6:12PM ERR can't connect to cluster error="client rate limiter Wait returned an error: context deadline exceeded - error from a previous attempt: http2: client connection lost" +6:12PM ERR ClusterUpdater failed error="conn check failed (2/5)" +6:13PM ERR can't connect to cluster error="Get \"https://127.0.0.1:50977/version?timeout=15s\": net/http: TLS handshake timeout" +6:13PM ERR ClusterUpdater failed error="conn check failed (3/5)" +6:13PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +6:13PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +9:41AM INF 🐶 K9s starting up... +9:41AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +9:41AM INF ✅ Kubernetes connectivity +9:41AM INF 🐶 K9s starting up... +9:41AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +9:41AM INF ✅ Kubernetes connectivity +9:41AM INF 🐶 K9s starting up... +9:41AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +9:41AM INF ✅ Kubernetes connectivity +9:41AM WRN log-reader canceled error="stream canceled context canceled for default/kubernetes-bootcamp-9bc58d867-k4kxg (kubernetes-bootcamp)" +9:42AM INF 🐶 K9s starting up... +9:42AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +9:42AM INF ✅ Kubernetes connectivity +9:43AM WRN log-reader canceled error="stream canceled context canceled for default/kubernetes-bootcamp-9bc58d867-k4kxg (kubernetes-bootcamp)" +9:43AM WRN log-reader canceled error="stream canceled context canceled for default/kubernetes-bootcamp-9bc58d867-k4kxg (kubernetes-bootcamp)" +9:46AM INF 🐶 K9s starting up... +9:46AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +9:46AM INF ✅ Kubernetes connectivity +9:46AM INF 🐶 K9s starting up... +9:46AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +9:46AM INF ✅ Kubernetes connectivity +9:48AM WRN log-reader canceled error="stream canceled context canceled for default/kubernetes-bootcamp-9bc58d867-k4kxg (kubernetes-bootcamp)" +9:51AM INF 🐶 K9s starting up... +9:51AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +9:51AM INF ✅ Kubernetes connectivity +9:51AM WRN log-reader canceled error="stream canceled context canceled for default/kubernetes-bootcamp-9bc58d867-k4kxg (kubernetes-bootcamp)" +9:53AM INF 🐶 K9s starting up... +9:53AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +9:53AM INF ✅ Kubernetes connectivity +9:53AM INF 🐶 K9s starting up... +9:53AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +9:53AM INF ✅ Kubernetes connectivity +1:33PM ERR can't connect to cluster error="Get \"https://127.0.0.1:50977/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +1:33PM ERR ClusterUpdater failed error="conn check failed (1/5)" +1:33PM ERR can't connect to cluster error="Get \"https://127.0.0.1:50977/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +1:33PM ERR ClusterUpdater failed error="conn check failed (2/5)" +1:34PM ERR can't connect to cluster error="Get \"https://127.0.0.1:50977/version?timeout=15s\": net/http: TLS handshake timeout" +1:34PM ERR ClusterUpdater failed error="conn check failed (3/5)" +1:34PM ERR can't connect to cluster error="Get \"https://127.0.0.1:50977/version?timeout=15s\": net/http: TLS handshake timeout" +1:34PM ERR ClusterUpdater failed error="conn check failed (4/5)" +1:34PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +1:34PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +8:59AM INF 🐶 K9s starting up... +8:59AM ERR Fail to locate metrics-server error="Get \"https://127.0.0.1:50977/api\": dial tcp 127.0.0.1:50977: connect: connection refused" +8:59AM ERR can't connect to cluster error="Get \"https://127.0.0.1:50977/version?timeout=15s\": dial tcp 127.0.0.1:50977: connect: connection refused" +8:59AM INF ✅ Kubernetes connectivity +8:59AM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +8:59AM ERR Fail to load global/context configuration error="Get \"https://127.0.0.1:50977/api\": dial tcp 127.0.0.1:50977: connect: connection refused\ncannot connect to context: minikube\nk8s connection failed for context: minikube" +8:59AM ERR Load cluster resources - No API server connection +8:59AM ERR failed to list contexts error="no connection" +8:59AM ERR can't connect to cluster error="Get \"https://127.0.0.1:50977/version?timeout=15s\": dial tcp 127.0.0.1:50977: connect: connection refused" +8:59AM WRN Unable to dial discovery API error="no connection to dial" +8:59AM ERR Load cluster resources - No API server connection +8:59AM ERR can't connect to cluster error="Get \"https://127.0.0.1:50977/version?timeout=15s\": dial tcp 127.0.0.1:50977: connect: connection refused" +8:59AM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:59AM ERR can't connect to cluster error="Get \"https://127.0.0.1:50977/version?timeout=15s\": dial tcp 127.0.0.1:50977: connect: connection refused" +8:59AM ERR ClusterUpdater failed error="conn check failed (2/5)" +8:59AM ERR can't connect to cluster error="Get \"https://127.0.0.1:50977/version?timeout=15s\": dial tcp 127.0.0.1:50977: connect: connection refused" +8:59AM ERR ClusterUpdater failed error="conn check failed (3/5)" +8:59AM ERR can't connect to cluster error="Get \"https://127.0.0.1:50977/version?timeout=15s\": dial tcp 127.0.0.1:50977: connect: connection refused" +8:59AM ERR ClusterUpdater failed error="conn check failed (4/5)" +8:59AM ERR can't connect to cluster error="Get \"https://127.0.0.1:50977/version?timeout=15s\": dial tcp 127.0.0.1:50977: connect: connection refused" +8:59AM ERR Conn check failed (5/5). Bailing out! +8:59AM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +8:59AM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +9:00AM INF 🐶 K9s starting up... +9:00AM ERR Fail to locate metrics-server error="Get \"https://127.0.0.1:50977/api\": dial tcp 127.0.0.1:50977: connect: connection refused" +9:00AM ERR can't connect to cluster error="Get \"https://127.0.0.1:50977/version?timeout=15s\": dial tcp 127.0.0.1:50977: connect: connection refused" +9:00AM INF ✅ Kubernetes connectivity +9:00AM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +9:00AM ERR Fail to load global/context configuration error="Get \"https://127.0.0.1:50977/api\": dial tcp 127.0.0.1:50977: connect: connection refused\ncannot connect to context: minikube\nk8s connection failed for context: minikube" +9:00AM ERR Load cluster resources - No API server connection +9:00AM ERR failed to list contexts error="no connection" +9:00AM WRN Unable to dial discovery API error="no connection to dial" +9:00AM ERR can't connect to cluster error="Get \"https://127.0.0.1:50977/version?timeout=15s\": dial tcp 127.0.0.1:50977: connect: connection refused" +9:00AM ERR Load cluster resources - No API server connection +9:00AM WRN Unable to dial discovery API error="no connection to dial" +9:00AM ERR can't connect to cluster error="Get \"https://127.0.0.1:50977/version?timeout=15s\": dial tcp 127.0.0.1:50977: connect: connection refused" +9:00AM WRN  Dial Failed! error="Post \"https://127.0.0.1:50977/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:50977: connect: connection refused" +9:00AM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +9:00AM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +9:00AM WRN Unable to validate namespace: "default". Using "default" as active namespace +9:00AM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +9:00AM WRN  Dial Failed! error="Post \"https://127.0.0.1:50977/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:50977: connect: connection refused" +9:00AM WRN Fail CRDs load error="Post \"https://127.0.0.1:50977/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:50977: connect: connection refused" +9:00AM WRN  Dial Failed! error="Post \"https://127.0.0.1:50977/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:50977: connect: connection refused" +9:00AM ERR can't connect to cluster error="Get \"https://127.0.0.1:50977/version?timeout=15s\": dial tcp 127.0.0.1:50977: connect: connection refused" +9:00AM ERR Cluster updater failed! error="conn check failed (1/5)" +9:00AM WRN Unable to dial discovery API error="no connection to dial" +9:01AM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +9:01AM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +9:01AM INF 🐶 K9s starting up... +9:01AM ERR Fail to locate metrics-server error="Get \"https://127.0.0.1:50977/api\": dial tcp 127.0.0.1:50977: connect: connection refused" +9:01AM ERR can't connect to cluster error="Get \"https://127.0.0.1:50977/version?timeout=15s\": dial tcp 127.0.0.1:50977: connect: connection refused" +9:01AM INF ✅ Kubernetes connectivity +9:01AM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +9:01AM ERR Fail to load global/context configuration error="Get \"https://127.0.0.1:50977/api\": dial tcp 127.0.0.1:50977: connect: connection refused\ncannot connect to context: minikube\nk8s connection failed for context: minikube" +9:01AM ERR Load cluster resources - No API server connection +9:01AM ERR failed to list contexts error="no connection" +9:01AM WRN Unable to dial discovery API error="no connection to dial" +9:01AM ERR can't connect to cluster error="Get \"https://127.0.0.1:50977/version?timeout=15s\": dial tcp 127.0.0.1:50977: connect: connection refused" +9:01AM ERR Load cluster resources - No API server connection +9:01AM WRN Unable to dial discovery API error="no connection to dial" +9:01AM ERR can't connect to cluster error="Get \"https://127.0.0.1:50977/version?timeout=15s\": dial tcp 127.0.0.1:50977: connect: connection refused" +9:01AM WRN  Dial Failed! error="Post \"https://127.0.0.1:50977/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:50977: connect: connection refused" +9:01AM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +9:01AM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +9:01AM WRN Unable to validate namespace: "default". Using "default" as active namespace +9:01AM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +9:01AM WRN  Dial Failed! error="Post \"https://127.0.0.1:50977/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:50977: connect: connection refused" +9:01AM WRN Fail CRDs load error="Post \"https://127.0.0.1:50977/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:50977: connect: connection refused" +9:01AM WRN  Dial Failed! error="Post \"https://127.0.0.1:50977/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:50977: connect: connection refused" +9:01AM ERR can't connect to cluster error="Get \"https://127.0.0.1:50977/version?timeout=15s\": dial tcp 127.0.0.1:50977: connect: connection refused" +9:01AM ERR Cluster updater failed! error="conn check failed (1/5)" +9:01AM WRN Unable to dial discovery API error="no connection to dial" +9:01AM ERR can't connect to cluster error="Get \"https://127.0.0.1:50977/version?timeout=15s\": dial tcp 127.0.0.1:50977: connect: connection refused" +9:01AM WRN  Dial Failed! error="Post \"https://127.0.0.1:50977/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:50977: connect: connection refused" +9:01AM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +9:01AM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +9:01AM WRN Unable to validate namespace: "default". Using "default" as active namespace +9:01AM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +9:01AM WRN  Dial Failed! error="Post \"https://127.0.0.1:50977/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:50977: connect: connection refused" +9:01AM WRN Fail CRDs load error="Post \"https://127.0.0.1:50977/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:50977: connect: connection refused" +9:01AM WRN  Dial Failed! error="Post \"https://127.0.0.1:50977/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 127.0.0.1:50977: connect: connection refused" +9:01AM ERR can't connect to cluster error="Get \"https://127.0.0.1:50977/version?timeout=15s\": dial tcp 127.0.0.1:50977: connect: connection refused" +9:01AM ERR Cluster updater failed! error="conn check failed (2/5)" +9:01AM WRN Unable to dial discovery API error="no connection to dial" +9:01AM INF 🐶 K9s starting up... +9:01AM ERR Fail to locate metrics-server error="Get \"https://127.0.0.1:50977/api\": dial tcp 127.0.0.1:50977: connect: connection refused" +9:01AM ERR can't connect to cluster error="Get \"https://127.0.0.1:50977/version?timeout=15s\": dial tcp 127.0.0.1:50977: connect: connection refused" +9:01AM INF ✅ Kubernetes connectivity +9:01AM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +9:01AM ERR Fail to load global/context configuration error="Get \"https://127.0.0.1:50977/api\": dial tcp 127.0.0.1:50977: connect: connection refused\ncannot connect to context: minikube\nk8s connection failed for context: minikube" +9:01AM ERR Load cluster resources - No API server connection +9:01AM ERR failed to list contexts error="no connection" +9:01AM WRN Unable to dial discovery API error="no connection to dial" +9:01AM ERR can't connect to cluster error="Get \"https://127.0.0.1:50977/version?timeout=15s\": dial tcp 127.0.0.1:50977: connect: connection refused" +9:01AM ERR Load cluster resources - No API server connection +9:01AM WRN Unable to dial discovery API error="no connection to dial" +9:01AM ERR can't connect to cluster error="Get \"https://127.0.0.1:50977/version?timeout=15s\": dial tcp 127.0.0.1:50977: connect: connection refused" +9:01AM ERR ClusterUpdater failed error="conn check failed (1/5)" +9:01AM ERR can't connect to cluster error="Get \"https://127.0.0.1:50977/version?timeout=15s\": dial tcp 127.0.0.1:50977: connect: connection refused" +9:01AM ERR ClusterUpdater failed error="conn check failed (2/5)" +9:01AM ERR can't connect to cluster error="Get \"https://127.0.0.1:50977/version?timeout=15s\": dial tcp 127.0.0.1:50977: connect: connection refused" +9:01AM ERR ClusterUpdater failed error="conn check failed (3/5)" +9:01AM ERR can't connect to cluster error="Get \"https://127.0.0.1:50977/version?timeout=15s\": dial tcp 127.0.0.1:50977: connect: connection refused" +9:01AM ERR ClusterUpdater failed error="conn check failed (4/5)" +9:01AM ERR can't connect to cluster error="Get \"https://127.0.0.1:50977/version?timeout=15s\": dial tcp 127.0.0.1:50977: connect: connection refused" +9:01AM ERR Conn check failed (5/5). Bailing out! +9:01AM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +9:01AM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +9:02AM INF 🐶 K9s starting up... +9:02AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +9:02AM INF ✅ Kubernetes connectivity +9:35AM WRN log-reader EOF error="stream closed EOF for default/debian (debian)" +9:41AM WRN log-reader EOF error="stream closed EOF for default/debian (debian)" +9:42AM INF 🐶 K9s starting up... +9:42AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +9:42AM INF ✅ Kubernetes connectivity +9:45AM WRN log-reader canceled error="stream canceled context canceled for default/kubernetes-bootcamp-9bc58d867-k4kxg (kubernetes-bootcamp)" +9:45AM WRN log-reader EOF error="stream closed EOF for default/debdeploy-7b464c4f76-7vnhr (debian)" +10:12AM ERR logs-stream error="stream logs failed container \"hellohttp\" in pod \"hellohttp-55849c744f-4hjgg\" is waiting to start: image can't be pulled for default/hellohttp-55849c744f-4hjgg (hellohttp)" +10:12AM ERR logs-stream error="stream logs failed container \"hellohttp\" in pod \"hellohttp-55849c744f-4hjgg\" is waiting to start: image can't be pulled for default/hellohttp-55849c744f-4hjgg (hellohttp)" +10:12AM ERR logs-stream error="stream logs failed container \"hellohttp\" in pod \"hellohttp-55849c744f-4hjgg\" is waiting to start: image can't be pulled for default/hellohttp-55849c744f-4hjgg (hellohttp)" +10:12AM ERR logs-stream error="stream logs failed container \"hellohttp\" in pod \"hellohttp-55849c744f-4hjgg\" is waiting to start: image can't be pulled for default/hellohttp-55849c744f-4hjgg (hellohttp)" +10:12AM ERR logs-stream error="stream logs failed container \"hellohttp\" in pod \"hellohttp-55849c744f-4hjgg\" is waiting to start: image can't be pulled for default/hellohttp-55849c744f-4hjgg (hellohttp)" +10:12AM ERR logs-stream error="stream logs failed container \"hellohttp\" in pod \"hellohttp-55849c744f-4hjgg\" is waiting to start: image can't be pulled for default/hellohttp-55849c744f-4hjgg (hellohttp)" +10:12AM ERR logs-stream error="stream logs failed container \"hellohttp\" in pod \"hellohttp-55849c744f-4hjgg\" is waiting to start: image can't be pulled for default/hellohttp-55849c744f-4hjgg (hellohttp)" +10:12AM ERR logs-stream error="stream logs failed container \"hellohttp\" in pod \"hellohttp-55849c744f-4hjgg\" is waiting to start: image can't be pulled for default/hellohttp-55849c744f-4hjgg (hellohttp)" +10:12AM ERR logs-stream error="stream logs failed container \"hellohttp\" in pod \"hellohttp-55849c744f-4hjgg\" is waiting to start: image can't be pulled for default/hellohttp-55849c744f-4hjgg (hellohttp)" +10:12AM ERR logs-stream error="stream logs failed container \"hellohttp\" in pod \"hellohttp-55849c744f-4hjgg\" is waiting to start: image can't be pulled for default/hellohttp-55849c744f-4hjgg (hellohttp)" +10:12AM ERR logs-stream error="stream logs failed container \"hellohttp\" in pod \"hellohttp-55849c744f-4hjgg\" is waiting to start: image can't be pulled for default/hellohttp-55849c744f-4hjgg (hellohttp)" +10:12AM ERR logs-stream error="stream logs failed container \"hellohttp\" in pod \"hellohttp-55849c744f-4hjgg\" is waiting to start: image can't be pulled for default/hellohttp-55849c744f-4hjgg (hellohttp)" +10:12AM ERR logs-stream error="stream logs failed container \"hellohttp\" in pod \"hellohttp-55849c744f-4hjgg\" is waiting to start: trying and failing to pull image for default/hellohttp-55849c744f-4hjgg (hellohttp)" +10:12AM INF 🐶 K9s starting up... +10:12AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +10:12AM INF ✅ Kubernetes connectivity +10:12AM ERR logs-stream error="stream logs failed container \"hellohttp\" in pod \"hellohttp-55849c744f-4hjgg\" is waiting to start: trying and failing to pull image for default/hellohttp-55849c744f-4hjgg (hellohttp)" +10:12AM ERR logs-stream error="stream logs failed container \"hellohttp\" in pod \"hellohttp-55849c744f-4hjgg\" is waiting to start: trying and failing to pull image for default/hellohttp-55849c744f-4hjgg (hellohttp)" +10:12AM ERR logs-stream error="stream logs failed container \"hellohttp\" in pod \"hellohttp-55849c744f-4hjgg\" is waiting to start: trying and failing to pull image for default/hellohttp-55849c744f-4hjgg (hellohttp)" +10:12AM ERR logs-stream error="stream logs failed container \"hellohttp\" in pod \"hellohttp-55849c744f-4hjgg\" is waiting to start: trying and failing to pull image for default/hellohttp-55849c744f-4hjgg (hellohttp)" +10:12AM ERR logs-stream error="stream logs failed container \"hellohttp\" in pod \"hellohttp-55849c744f-4hjgg\" is waiting to start: trying and failing to pull image for default/hellohttp-55849c744f-4hjgg (hellohttp)" +10:12AM ERR logs-stream error="stream logs failed container \"hellohttp\" in pod \"hellohttp-55849c744f-4hjgg\" is waiting to start: trying and failing to pull image for default/hellohttp-55849c744f-4hjgg (hellohttp)" +10:12AM ERR logs-stream error="stream logs failed container \"hellohttp\" in pod \"hellohttp-55849c744f-4hjgg\" is waiting to start: trying and failing to pull image for default/hellohttp-55849c744f-4hjgg (hellohttp)" +10:12AM ERR logs-stream error="stream logs failed container \"hellohttp\" in pod \"hellohttp-55849c744f-4hjgg\" is waiting to start: trying and failing to pull image for default/hellohttp-55849c744f-4hjgg (hellohttp)" +10:12AM ERR logs-stream error="stream logs failed container \"hellohttp\" in pod \"hellohttp-55849c744f-4hjgg\" is waiting to start: trying and failing to pull image for default/hellohttp-55849c744f-4hjgg (hellohttp)" +10:12AM ERR logs-stream error="stream logs failed container \"hellohttp\" in pod \"hellohttp-55849c744f-4hjgg\" is waiting to start: image can't be pulled for default/hellohttp-55849c744f-4hjgg (hellohttp)" +10:12AM ERR logs-stream error="stream logs failed container \"hellohttp\" in pod \"hellohttp-55849c744f-4hjgg\" is waiting to start: image can't be pulled for default/hellohttp-55849c744f-4hjgg (hellohttp)" +10:12AM ERR logs-stream error="stream logs failed container \"hellohttp\" in pod \"hellohttp-55849c744f-4hjgg\" is waiting to start: image can't be pulled for default/hellohttp-55849c744f-4hjgg (hellohttp)" +10:12AM ERR logs-stream error="stream logs failed container \"hellohttp\" in pod \"hellohttp-55849c744f-4hjgg\" is waiting to start: image can't be pulled for default/hellohttp-55849c744f-4hjgg (hellohttp)" +10:12AM ERR logs-stream error="stream logs failed container \"hellohttp\" in pod \"hellohttp-55849c744f-4hjgg\" is waiting to start: image can't be pulled for default/hellohttp-55849c744f-4hjgg (hellohttp)" +10:12AM ERR logs-stream error="stream logs failed container \"hellohttp\" in pod \"hellohttp-55849c744f-4hjgg\" is waiting to start: image can't be pulled for default/hellohttp-55849c744f-4hjgg (hellohttp)" +10:12AM ERR logs-stream error="stream logs failed container \"hellohttp\" in pod \"hellohttp-55849c744f-4hjgg\" is waiting to start: image can't be pulled for default/hellohttp-55849c744f-4hjgg (hellohttp)" +10:12AM ERR logs-stream error="stream logs failed container \"hellohttp\" in pod \"hellohttp-55849c744f-4hjgg\" is waiting to start: image can't be pulled for default/hellohttp-55849c744f-4hjgg (hellohttp)" +10:12AM ERR logs-stream error="stream logs failed container \"hellohttp\" in pod \"hellohttp-55849c744f-4hjgg\" is waiting to start: image can't be pulled for default/hellohttp-55849c744f-4hjgg (hellohttp)" +10:12AM ERR logs-stream error="stream logs failed container \"hellohttp\" in pod \"hellohttp-55849c744f-4hjgg\" is waiting to start: image can't be pulled for default/hellohttp-55849c744f-4hjgg (hellohttp)" +10:12AM ERR logs-stream error="stream logs failed container \"hellohttp\" in pod \"hellohttp-55849c744f-4hjgg\" is waiting to start: image can't be pulled for default/hellohttp-55849c744f-4hjgg (hellohttp)" +11:45AM ERR logs-stream error="stream logs failed container \"hellohttp\" in pod \"hellohttp-774ccc84d4-wg262\" is waiting to start: image can't be pulled for default/hellohttp-774ccc84d4-wg262 (hellohttp)" +11:45AM ERR logs-stream error="stream logs failed container \"hellohttp\" in pod \"hellohttp-774ccc84d4-wg262\" is waiting to start: image can't be pulled for default/hellohttp-774ccc84d4-wg262 (hellohttp)" +11:45AM ERR logs-stream error="stream logs failed container \"hellohttp\" in pod \"hellohttp-774ccc84d4-wg262\" is waiting to start: image can't be pulled for default/hellohttp-774ccc84d4-wg262 (hellohttp)" +11:45AM ERR logs-stream error="stream logs failed container \"hellohttp\" in pod \"hellohttp-774ccc84d4-wg262\" is waiting to start: image can't be pulled for default/hellohttp-774ccc84d4-wg262 (hellohttp)" +11:45AM ERR logs-stream error="stream logs failed container \"hellohttp\" in pod \"hellohttp-774ccc84d4-wg262\" is waiting to start: image can't be pulled for default/hellohttp-774ccc84d4-wg262 (hellohttp)" +11:45AM ERR logs-stream error="stream logs failed container \"hellohttp\" in pod \"hellohttp-774ccc84d4-wg262\" is waiting to start: image can't be pulled for default/hellohttp-774ccc84d4-wg262 (hellohttp)" +11:45AM ERR logs-stream error="stream logs failed container \"hellohttp\" in pod \"hellohttp-774ccc84d4-wg262\" is waiting to start: image can't be pulled for default/hellohttp-774ccc84d4-wg262 (hellohttp)" +11:45AM ERR logs-stream error="stream logs failed container \"hellohttp\" in pod \"hellohttp-774ccc84d4-wg262\" is waiting to start: image can't be pulled for default/hellohttp-774ccc84d4-wg262 (hellohttp)" +11:45AM ERR logs-stream error="stream logs failed container \"hellohttp\" in pod \"hellohttp-774ccc84d4-wg262\" is waiting to start: image can't be pulled for default/hellohttp-774ccc84d4-wg262 (hellohttp)" +11:45AM ERR logs-stream error="stream logs failed container \"hellohttp\" in pod \"hellohttp-774ccc84d4-wg262\" is waiting to start: image can't be pulled for default/hellohttp-774ccc84d4-wg262 (hellohttp)" +11:45AM ERR logs-stream error="stream logs failed container \"hellohttp\" in pod \"hellohttp-774ccc84d4-wg262\" is waiting to start: image can't be pulled for default/hellohttp-774ccc84d4-wg262 (hellohttp)" +11:45AM ERR logs-stream error="stream logs failed container \"hellohttp\" in pod \"hellohttp-774ccc84d4-wg262\" is waiting to start: trying and failing to pull image for default/hellohttp-774ccc84d4-wg262 (hellohttp)" +11:45AM ERR logs-stream error="stream logs failed container \"hellohttp\" in pod \"hellohttp-774ccc84d4-wg262\" is waiting to start: trying and failing to pull image for default/hellohttp-774ccc84d4-wg262 (hellohttp)" +11:45AM ERR logs-stream error="stream logs failed container \"hellohttp\" in pod \"hellohttp-774ccc84d4-wg262\" is waiting to start: trying and failing to pull image for default/hellohttp-774ccc84d4-wg262 (hellohttp)" +11:45AM ERR logs-stream error="stream logs failed container \"hellohttp\" in pod \"hellohttp-774ccc84d4-wg262\" is waiting to start: trying and failing to pull image for default/hellohttp-774ccc84d4-wg262 (hellohttp)" +11:45AM ERR logs-stream error="stream logs failed container \"hellohttp\" in pod \"hellohttp-774ccc84d4-wg262\" is waiting to start: trying and failing to pull image for default/hellohttp-774ccc84d4-wg262 (hellohttp)" +11:45AM ERR logs-stream error="stream logs failed container \"hellohttp\" in pod \"hellohttp-774ccc84d4-wg262\" is waiting to start: trying and failing to pull image for default/hellohttp-774ccc84d4-wg262 (hellohttp)" +11:45AM ERR logs-stream error="stream logs failed container \"hellohttp\" in pod \"hellohttp-774ccc84d4-wg262\" is waiting to start: trying and failing to pull image for default/hellohttp-774ccc84d4-wg262 (hellohttp)" +11:45AM ERR logs-stream error="stream logs failed container \"hellohttp\" in pod \"hellohttp-774ccc84d4-wg262\" is waiting to start: trying and failing to pull image for default/hellohttp-774ccc84d4-wg262 (hellohttp)" +11:45AM ERR logs-stream error="stream logs failed container \"hellohttp\" in pod \"hellohttp-774ccc84d4-wg262\" is waiting to start: trying and failing to pull image for default/hellohttp-774ccc84d4-wg262 (hellohttp)" +11:47AM WRN log-reader canceled error="stream canceled context canceled for default/kubernetes-bootcamp-9bc58d867-k4kxg (kubernetes-bootcamp)" +11:47AM WRN log-reader canceled error="stream canceled context canceled for default/kubernetes-bootcamp-9bc58d867-k4kxg (kubernetes-bootcamp)" +11:49AM WRN log-reader canceled error="stream canceled context canceled for default/hellohttp-79895bc874-j2g6b (hellohttp)" +12:02PM INF 🐶 K9s starting up... +12:02PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +12:02PM INF ✅ Kubernetes connectivity +12:02PM ERR Failed to parse skin file -- term.yaml: Additional property table is not allowed. +12:02PM ERR Failed to parse skin file -- term.yaml: Additional property table is not allowed. +12:03PM INF 🐶 K9s starting up... +12:03PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +12:03PM INF ✅ Kubernetes connectivity +12:07PM INF 🐶 K9s starting up... +12:07PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +12:07PM INF ✅ Kubernetes connectivity +12:11PM INF 🐶 K9s starting up... +12:11PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +12:11PM INF ✅ Kubernetes connectivity +12:12PM INF 🐶 K9s starting up... +12:12PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +12:12PM INF ✅ Kubernetes connectivity +12:17PM INF 🐶 K9s starting up... +12:17PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +12:17PM INF ✅ Kubernetes connectivity +12:17PM INF 🐶 K9s starting up... +12:17PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +12:17PM INF ✅ Kubernetes connectivity +12:19PM INF 🐶 K9s starting up... +12:19PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +12:19PM INF ✅ Kubernetes connectivity +12:19PM INF 🐶 K9s starting up... +12:19PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +12:19PM INF ✅ Kubernetes connectivity +12:52PM ERR can't connect to cluster error="Get \"https://127.0.0.1:52300/version?timeout=15s\": context deadline exceeded" +12:52PM ERR ClusterUpdater failed error="conn check failed (1/5)" +12:52PM WRN log-reader canceled error="stream canceled context canceled for default/hellohttp-79895bc874-j2g6b (hellohttp)" +12:52PM ERR can't connect to cluster error="Get \"https://127.0.0.1:52300/version?timeout=15s\": context deadline exceeded" +12:52PM ERR ClusterUpdater failed error="conn check failed (1/5)" +12:52PM WRN log-reader canceled error="stream canceled context canceled for default/kubernetes-bootcamp-9bc58d867-k4kxg (kubernetes-bootcamp)" +12:52PM ERR can't connect to cluster error="Get \"https://127.0.0.1:52300/version?timeout=15s\": context deadline exceeded - error from a previous attempt: http2: client connection lost" +12:52PM ERR ClusterUpdater failed error="conn check failed (2/5)" +1:08PM ERR can't connect to cluster error="Get \"https://127.0.0.1:52300/version?timeout=15s\": net/http: TLS handshake timeout - error from a previous attempt: http2: client connection lost" +1:08PM ERR ClusterUpdater failed error="conn check failed (2/5)" +1:09PM ERR can't connect to cluster error="Get \"https://127.0.0.1:52300/version?timeout=15s\": net/http: TLS handshake timeout" +1:09PM ERR ClusterUpdater failed error="conn check failed (3/5)" +1:09PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +1:09PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +1:09PM ERR can't connect to cluster error="Get \"https://127.0.0.1:52300/version?timeout=15s\": net/http: TLS handshake timeout" +1:09PM ERR ClusterUpdater failed error="conn check failed (3/5)" +1:09PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +1:09PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +1:20PM INF 🐶 K9s starting up... +1:20PM ERR Fail to locate metrics-server error="Get \"https://127.0.0.1:52300/api\": net/http: TLS handshake timeout" +1:20PM ERR can't connect to cluster error="Get \"https://127.0.0.1:52300/version?timeout=15s\": net/http: TLS handshake timeout" +1:20PM INF ✅ Kubernetes connectivity +1:20PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +1:20PM ERR Fail to load global/context configuration error="Get \"https://127.0.0.1:52300/api\": net/http: TLS handshake timeout\ncannot connect to context: minikube\nk8s connection failed for context: minikube" +1:20PM ERR Load cluster resources - No API server connection +1:20PM ERR failed to list contexts error="no connection" +1:20PM WRN Unable to dial discovery API error="no connection to dial" +1:20PM ERR can't connect to cluster error="Get \"https://127.0.0.1:52300/version?timeout=15s\": net/http: TLS handshake timeout" +1:20PM ERR Load cluster resources - No API server connection +1:20PM WRN Unable to dial discovery API error="no connection to dial" +1:21PM ERR can't connect to cluster error="Get \"https://127.0.0.1:52300/version?timeout=15s\": net/http: TLS handshake timeout" +1:21PM ERR ClusterUpdater failed error="conn check failed (1/5)" +1:21PM ERR can't connect to cluster error="Get \"https://127.0.0.1:52300/version?timeout=15s\": net/http: TLS handshake timeout" +1:21PM ERR ClusterUpdater failed error="conn check failed (2/5)" +1:21PM ERR can't connect to cluster error="Get \"https://127.0.0.1:52300/version?timeout=15s\": net/http: TLS handshake timeout" +1:21PM ERR ClusterUpdater failed error="conn check failed (3/5)" +1:21PM ERR can't connect to cluster error="Get \"https://127.0.0.1:52300/version?timeout=15s\": net/http: TLS handshake timeout" +1:21PM ERR ClusterUpdater failed error="conn check failed (4/5)" +1:21PM ERR can't connect to cluster error="Get \"https://127.0.0.1:52300/version?timeout=15s\": net/http: TLS handshake timeout" +1:21PM ERR Conn check failed (5/5). Bailing out! +1:21PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +1:21PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +2:14PM INF 🐶 K9s starting up... +2:14PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +2:14PM INF ✅ Kubernetes connectivity +2:27PM ERR can't connect to cluster error="Get \"https://127.0.0.1:52300/version?timeout=15s\": context deadline exceeded" +2:27PM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:27PM INF 🐶 K9s starting up... +2:27PM ERR can't connect to cluster error="Get \"https://127.0.0.1:52300/version?timeout=15s\": net/http: TLS handshake timeout" +2:27PM ERR ClusterUpdater failed error="conn check failed (2/5)" +2:27PM ERR Fail to locate metrics-server error="Get \"https://127.0.0.1:52300/api\": net/http: TLS handshake timeout" +2:28PM ERR can't connect to cluster error="Get \"https://127.0.0.1:52300/version?timeout=15s\": net/http: TLS handshake timeout" +2:28PM INF ✅ Kubernetes connectivity +2:28PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +2:28PM ERR Fail to load global/context configuration error="Get \"https://127.0.0.1:52300/api\": net/http: TLS handshake timeout\ncannot connect to context: minikube\nk8s connection failed for context: minikube" +2:28PM ERR Load cluster resources - No API server connection +2:28PM ERR failed to list contexts error="no connection" +2:28PM WRN Unable to dial discovery API error="no connection to dial" +2:28PM ERR can't connect to cluster error="Get \"https://127.0.0.1:52300/version?timeout=15s\": net/http: TLS handshake timeout" +2:28PM ERR ClusterUpdater failed error="conn check failed (3/5)" +2:28PM ERR can't connect to cluster error="Get \"https://127.0.0.1:52300/version?timeout=15s\": net/http: TLS handshake timeout" +2:28PM ERR Load cluster resources - No API server connection +2:28PM WRN Unable to dial discovery API error="no connection to dial" +2:28PM ERR can't connect to cluster error="Get \"https://127.0.0.1:52300/version?timeout=15s\": net/http: TLS handshake timeout" +2:28PM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:28PM ERR can't connect to cluster error="Get \"https://127.0.0.1:52300/version?timeout=15s\": net/http: TLS handshake timeout" +2:28PM ERR ClusterUpdater failed error="conn check failed (4/5)" +2:28PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +2:28PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +2:28PM ERR can't connect to cluster error="Get \"https://127.0.0.1:52300/version?timeout=15s\": net/http: TLS handshake timeout" +2:28PM ERR ClusterUpdater failed error="conn check failed (2/5)" +2:28PM INF 🐶 K9s starting up... +2:29PM ERR Fail to locate metrics-server error="Get \"https://127.0.0.1:52300/api\": net/http: TLS handshake timeout" +2:29PM INF 🐶 K9s starting up... +2:29PM ERR can't connect to cluster error="Get \"https://127.0.0.1:52300/version?timeout=15s\": net/http: TLS handshake timeout" +2:29PM INF ✅ Kubernetes connectivity +2:29PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +2:29PM ERR Fail to load global/context configuration error="Get \"https://127.0.0.1:52300/api\": net/http: TLS handshake timeout\ncannot connect to context: minikube\nk8s connection failed for context: minikube" +2:29PM ERR Load cluster resources - No API server connection +2:29PM ERR failed to list contexts error="no connection" +2:29PM WRN Unable to dial discovery API error="no connection to dial" +2:29PM ERR Fail to locate metrics-server error="Get \"https://127.0.0.1:52300/api\": net/http: TLS handshake timeout" +2:29PM ERR can't connect to cluster error="Get \"https://127.0.0.1:52300/version?timeout=15s\": net/http: TLS handshake timeout" +2:29PM ERR Load cluster resources - No API server connection +2:29PM WRN Unable to dial discovery API error="no connection to dial" +2:29PM ERR can't connect to cluster error="Get \"https://127.0.0.1:52300/version?timeout=15s\": net/http: TLS handshake timeout" +2:29PM INF ✅ Kubernetes connectivity +2:29PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +2:29PM ERR Fail to load global/context configuration error="Get \"https://127.0.0.1:52300/api\": net/http: TLS handshake timeout\ncannot connect to context: minikube\nk8s connection failed for context: minikube" +2:29PM ERR Load cluster resources - No API server connection +2:29PM ERR failed to list contexts error="no connection" +2:29PM WRN Unable to dial discovery API error="no connection to dial" +2:29PM ERR can't connect to cluster error="Get \"https://127.0.0.1:52300/version?timeout=15s\": net/http: TLS handshake timeout" +2:29PM ERR Load cluster resources - No API server connection +2:29PM ERR can't connect to cluster error="Get \"https://127.0.0.1:52300/version?timeout=15s\": net/http: TLS handshake timeout" +2:29PM ERR can't connect to cluster error="Get \"https://127.0.0.1:52300/version?timeout=15s\": net/http: TLS handshake timeout" +2:29PM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:29PM WRN  Dial Failed! error="Post \"https://127.0.0.1:52300/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": net/http: TLS handshake timeout" +2:29PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +2:29PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +2:29PM WRN Unable to validate namespace: "default". Using "default" as active namespace +2:29PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +2:29PM ERR can't connect to cluster error="Get \"https://127.0.0.1:52300/version?timeout=15s\": net/http: TLS handshake timeout" +2:29PM ERR ClusterUpdater failed error="conn check failed (2/5)" +2:30PM ERR can't connect to cluster error="Get \"https://127.0.0.1:52300/version?timeout=15s\": net/http: TLS handshake timeout" +2:30PM ERR ClusterUpdater failed error="conn check failed (3/5)" +2:30PM WRN  Dial Failed! error="Post \"https://127.0.0.1:52300/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": net/http: TLS handshake timeout" +2:30PM WRN Fail CRDs load error="Post \"https://127.0.0.1:52300/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": net/http: TLS handshake timeout" +2:30PM ERR can't connect to cluster error="Get \"https://127.0.0.1:52300/version?timeout=15s\": net/http: TLS handshake timeout" +2:30PM ERR ClusterUpdater failed error="conn check failed (4/5)" +2:30PM WRN  Dial Failed! error="Post \"https://127.0.0.1:52300/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": net/http: TLS handshake timeout" +2:30PM ERR can't connect to cluster error="Get \"https://127.0.0.1:52300/version?timeout=15s\": net/http: TLS handshake timeout" +2:30PM ERR Conn check failed (5/5). Bailing out! +2:30PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +2:30PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +2:30PM ERR can't connect to cluster error="Get \"https://127.0.0.1:52300/version?timeout=15s\": net/http: TLS handshake timeout" +2:30PM ERR Cluster updater failed! error="conn check failed (1/5)" +2:33PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +2:33PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +2:33PM INF 🐶 K9s starting up... +2:33PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +2:33PM INF ✅ Kubernetes connectivity +2:33PM INF 🐶 K9s starting up... +2:33PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +2:33PM INF ✅ Kubernetes connectivity +2:33PM INF 🐶 K9s starting up... +2:33PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +2:33PM INF ✅ Kubernetes connectivity +2:34PM INF 🐶 K9s starting up... +2:34PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +2:34PM INF ✅ Kubernetes connectivity +2:34PM INF 🐶 K9s starting up... +2:34PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +2:34PM INF ✅ Kubernetes connectivity +2:34PM INF 🐶 K9s starting up... +2:34PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +2:34PM INF ✅ Kubernetes connectivity +2:34PM INF 🐶 K9s starting up... +2:34PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +2:34PM INF ✅ Kubernetes connectivity +2:34PM ERR Failed to parse skin file -- onelight.yaml: yaml: unknown anchor 'magenta' referenced. +2:34PM ERR Failed to parse skin file -- onelight.yaml: yaml: unknown anchor 'magenta' referenced. +2:35PM INF 🐶 K9s starting up... +2:35PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +2:35PM INF ✅ Kubernetes connectivity +2:35PM INF 🐶 K9s starting up... +2:35PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +2:35PM INF ✅ Kubernetes connectivity +2:35PM INF 🐶 K9s starting up... +2:35PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +2:35PM INF ✅ Kubernetes connectivity +2:35PM INF 🐶 K9s starting up... +2:35PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +2:35PM INF ✅ Kubernetes connectivity +2:36PM INF 🐶 K9s starting up... +2:36PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +2:36PM INF ✅ Kubernetes connectivity +2:40PM INF 🐶 K9s starting up... +2:40PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +2:40PM INF ✅ Kubernetes connectivity +2:42PM WRN log-reader canceled error="stream canceled context canceled for default/kubernetes-bootcamp-9bc58d867-k4kxg (kubernetes-bootcamp)" +3:34PM INF 🐶 K9s starting up... +3:34PM ERR config refine failed error="unable to activate context \"\": getcontext - invalid context specified: \"\"" +3:34PM ERR Fail to locate metrics-server error="Get \"http://localhost:8080/api\": dial tcp 127.0.0.1:8080: connect: connection refused" +3:34PM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp 127.0.0.1:8080: connect: connection refused" +3:34PM INF ✅ Kubernetes connectivity +3:34PM WRN Save failed. no active config detected +3:34PM ERR Fail to load global/context configuration error="unable to activate context \"\": getcontext - invalid context specified: \"\"\nGet \"http://localhost:8080/api\": dial tcp 127.0.0.1:8080: connect: connection refused\ncannot connect to context: \nk8s connection failed for context: " +3:34PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +3:34PM ERR Load cluster resources - No API server connection +3:34PM ERR failed to list contexts error="no connection" +3:34PM WRN Unable to dial discovery API error="no connection to dial" +3:34PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +3:34PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +3:34PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +3:34PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +3:34PM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp 127.0.0.1:8080: connect: connection refused" +3:34PM ERR Load cluster resources - No API server connection +3:34PM WRN Unable to dial discovery API error="no connection to dial" +3:34PM WRN Plugins load failed: getcontext - invalid context specified: "" +3:34PM WRN Save failed. no active config detected +3:34PM ERR nuking k9s shell pod error="getcontext - invalid context specified: \"\"" +3:34PM WRN Save failed. no active config detected +9:07AM INF 🐶 K9s starting up... +9:07AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +9:07AM INF ✅ Kubernetes connectivity +9:08AM INF 🐶 K9s starting up... +9:08AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +9:08AM INF ✅ Kubernetes connectivity +9:37AM ERR can't connect to cluster error="Get \"https://127.0.0.1:55808/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +9:37AM ERR ClusterUpdater failed error="conn check failed (1/5)" +9:37AM ERR can't connect to cluster error="Get \"https://127.0.0.1:55808/version?timeout=15s\": net/http: TLS handshake timeout" +9:37AM ERR ClusterUpdater failed error="conn check failed (2/5)" +9:38AM WRN Unable to dial discovery API error="no connection to dial" +9:38AM ERR Watcher failed for containers -- failed to locate pod "default/kubernetes-bootcamp-9bc58d867-4jqjf": ACCESS -- No API server connection error="failed to locate pod \"default/kubernetes-bootcamp-9bc58d867-4jqjf\": ACCESS -- No API server connection" +9:38AM ERR refresh failed for gvr: v1/pods error="ACCESS -- No API server connection" +9:38AM ERR Watcher failed for v1/pods -- ACCESS -- No API server connection error="ACCESS -- No API server connection" +9:38AM ERR Watcher failed for containers -- failed to locate pod "default/kubernetes-bootcamp-9bc58d867-l7xx9": ACCESS -- No API server connection error="failed to locate pod \"default/kubernetes-bootcamp-9bc58d867-l7xx9\": ACCESS -- No API server connection" +9:38AM ERR refresh failed for gvr: v1/pods error="ACCESS -- No API server connection" +9:38AM ERR Watcher failed for v1/pods -- ACCESS -- No API server connection error="ACCESS -- No API server connection" +9:38AM ERR Watcher failed for containers -- failed to locate pod "default/kubernetes-bootcamp-9bc58d867-wtvqg": ACCESS -- No API server connection error="failed to locate pod \"default/kubernetes-bootcamp-9bc58d867-wtvqg\": ACCESS -- No API server connection" +9:38AM ERR refresh failed for gvr: v1/pods error="ACCESS -- No API server connection" +9:38AM ERR Watcher failed for v1/pods -- ACCESS -- No API server connection error="ACCESS -- No API server connection" +9:38AM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +9:38AM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +9:38AM INF 🐶 K9s starting up... +9:42AM INF 🐶 K9s starting up... +9:42AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +9:42AM INF ✅ Kubernetes connectivity +5:50AM ERR can't connect to cluster error="Get \"https://127.0.0.1:59095/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +5:50AM ERR ClusterUpdater failed error="conn check failed (1/5)" +7:36AM ERR can't connect to cluster error="Get \"https://127.0.0.1:59095/version?timeout=15s\": context deadline exceeded - error from a previous attempt: http2: client connection lost" +7:36AM ERR ClusterUpdater failed error="conn check failed (2/5)" +7:37AM ERR can't connect to cluster error="Get \"https://127.0.0.1:59095/version?timeout=15s\": net/http: TLS handshake timeout" +7:37AM ERR ClusterUpdater failed error="conn check failed (3/5)" +7:37AM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +7:37AM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +10:56AM INF 🐶 K9s starting up... +10:56AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +10:56AM INF ✅ Kubernetes connectivity +11:12AM INF 🐶 K9s starting up... +11:12AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +11:12AM INF ✅ Kubernetes connectivity +11:12AM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:12AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:12AM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:12AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:12AM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:12AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:12AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:12AM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:12AM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:12AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:13AM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:13AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:13AM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:13AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:13AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:13AM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:13AM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:13AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:13AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:13AM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:13AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:13AM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:13AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:13AM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:13AM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:13AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:13AM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:13AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:13AM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:13AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:13AM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:13AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:13AM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:13AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:13AM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:13AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:13AM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:13AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:13AM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:13AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:14AM INF 🐶 K9s starting up... +11:14AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +11:14AM INF ✅ Kubernetes connectivity +11:15AM ERR no port-forward defined +11:15AM ERR Container jk-matt-jkserver is not running? +11:15AM ERR unable to locate container named "init-mounts" +11:15AM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:15AM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:15AM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:15AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:15AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:15AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:15AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:15AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:15AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:15AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:15AM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:15AM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:15AM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:15AM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:15AM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:15AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:15AM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:15AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:15AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:15AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:15AM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:15AM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:15AM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:17AM WRN Deleted (1) portforward for "kubernetes-dashboard/kubernetes-dashboard-7779f9b69b-8cbkc|kubernetes-dashboard|9090:9090" +11:17AM WRN Deleted (0) portforward for "kubernetes-dashboard/kubernetes-dashboard-7779f9b69b-8cbkc|kubernetes-dashboard|9090:9090" +11:18AM ERR no port-forward defined +11:18AM WRN Deleted (1) portforward for "kubernetes-dashboard/kubernetes-dashboard-7779f9b69b-8cbkc|kubernetes-dashboard|9090:9090" +11:18AM WRN Deleted (0) portforward for "kubernetes-dashboard/kubernetes-dashboard-7779f9b69b-8cbkc|kubernetes-dashboard|9090:9090" +11:18AM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:18AM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:18AM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:18AM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:18AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:18AM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:18AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:18AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:18AM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:18AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:18AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:18AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:18AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:18AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:18AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:18AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:18AM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:18AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:18AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:18AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:18AM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:20AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:20AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:20AM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:20AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:20AM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:20AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:20AM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:21AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:21AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:21AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:21AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:21AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:21AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:21AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:21AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:21AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:21AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:21AM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:21AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:21AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:21AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:21AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:21AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:21AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:21AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:21AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:21AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:21AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:21AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:21AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:21AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:21AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:21AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:21AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:21AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:21AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:21AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:22AM ERR Container jk-matt-jkserver is not running? +11:22AM ERR no port-forward defined +11:22AM ERR Container jk-matt-jkserver is not running? +11:22AM ERR no port-forward defined +11:22AM ERR Container jk-matt-jkserver is not running? +11:22AM ERR no port-forward defined +11:22AM ERR Container jk-matt-jkserver is not running? +11:22AM ERR no port-forward defined +11:39AM ERR can't connect to cluster error="Get \"https://127.0.0.1:49738/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +11:39AM ERR ClusterUpdater failed error="conn check failed (1/5)" +11:39AM ERR refresh failed for gvr: v1/pods error="ACCESS -- No API server connection" +11:39AM WRN Unable to dial discovery API error="no connection to dial" +11:39AM ERR Watcher failed for v1/pods -- ACCESS -- No API server connection error="ACCESS -- No API server connection" +11:39AM ERR Watcher failed for containers -- failed to locate pod "jk-matt/jk-matt-jkserver-0": ACCESS -- No API server connection error="failed to locate pod \"jk-matt/jk-matt-jkserver-0\": ACCESS -- No API server connection" +11:39AM ERR refresh failed for gvr: v1/pods error="ACCESS -- No API server connection" +11:39AM ERR Watcher failed for v1/pods -- ACCESS -- No API server connection error="ACCESS -- No API server connection" +11:39AM ERR Watcher failed for containers -- failed to locate pod "jk-matt/jk-matt-jkserver-0": ACCESS -- No API server connection error="failed to locate pod \"jk-matt/jk-matt-jkserver-0\": ACCESS -- No API server connection" +11:39AM ERR refresh failed for gvr: v1/pods error="ACCESS -- No API server connection" +11:39AM ERR Watcher failed for v1/pods -- ACCESS -- No API server connection error="ACCESS -- No API server connection" +11:39AM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +11:39AM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +11:39AM INF 🐶 K9s starting up... +11:40AM ERR Fail to locate metrics-server error="Get \"https://127.0.0.1:49738/api\": net/http: TLS handshake timeout" +11:40AM ERR can't connect to cluster error="Get \"https://127.0.0.1:49738/version?timeout=15s\": net/http: TLS handshake timeout" +11:40AM INF ✅ Kubernetes connectivity +11:40AM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +11:40AM ERR Fail to load global/context configuration error="Get \"https://127.0.0.1:49738/api\": net/http: TLS handshake timeout\ncannot connect to context: minikube\nk8s connection failed for context: minikube" +11:40AM ERR Load cluster resources - No API server connection +11:40AM ERR failed to list contexts error="no connection" +11:40AM WRN Unable to dial discovery API error="no connection to dial" +11:42AM INF 🐶 K9s starting up... +11:42AM ERR config refine failed error="unable to activate context \"\": getcontext - invalid context specified: \"\"" +11:42AM ERR Fail to locate metrics-server error="Get \"http://localhost:8080/api\": dial tcp 127.0.0.1:8080: connect: connection refused" +11:42AM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp 127.0.0.1:8080: connect: connection refused" +11:42AM INF ✅ Kubernetes connectivity +11:42AM WRN Save failed. no active config detected +11:42AM ERR Fail to load global/context configuration error="unable to activate context \"\": getcontext - invalid context specified: \"\"\nGet \"http://localhost:8080/api\": dial tcp 127.0.0.1:8080: connect: connection refused\ncannot connect to context: \nk8s connection failed for context: " +11:42AM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +11:42AM ERR Load cluster resources - No API server connection +11:42AM ERR failed to list contexts error="no connection" +11:42AM WRN Unable to dial discovery API error="no connection to dial" +11:42AM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +11:42AM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +11:42AM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +11:42AM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +11:42AM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp 127.0.0.1:8080: connect: connection refused" +11:42AM ERR Load cluster resources - No API server connection +11:42AM WRN Unable to dial discovery API error="no connection to dial" +11:42AM WRN Plugins load failed: getcontext - invalid context specified: "" +11:42AM WRN Plugins load failed: getcontext - invalid context specified: "" +11:42AM WRN Plugins load failed: getcontext - invalid context specified: "" +11:42AM WRN Save failed. no active config detected +11:42AM ERR nuking k9s shell pod error="getcontext - invalid context specified: \"\"" +11:42AM WRN Save failed. no active config detected +11:42AM INF 🐶 K9s starting up... +11:42AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +11:42AM INF ✅ Kubernetes connectivity +11:43AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:43AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:43AM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:43AM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:43AM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:43AM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:44AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:44AM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:44AM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:44AM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:44AM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:44AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:44AM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:44AM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:44AM WRN Deleted (0) portforward for "jk-matt/jk-matt-jkserver-0" +11:44AM WRN Deleted (0) portforward for "jk-matt/jk-matt-jkserver-0" +11:44AM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:44AM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:44AM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:44AM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:44AM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:44AM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:44AM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:44AM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:44AM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:44AM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:44AM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:44AM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:48AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:48AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:48AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:48AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:48AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:48AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:48AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:48AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:48AM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:50AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:50AM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:51AM WRN Deleted (0) portforward for "jk-matt/jk-matt-jkserver-0" +11:51AM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:51AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:51AM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:51AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:51AM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:51AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:51AM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:51AM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:51AM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:51AM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:51AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:51AM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:51AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:51AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:51AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:51AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:51AM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:51AM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:52AM WRN log-reader EOF error="stream closed EOF for default/debian-685495c79c-4rl2h (debian)" +11:52AM ERR refresh failed for gvr: containers error="failed to locate pod \"default/debian-685495c79c-4rl2h\": pods \"debian-685495c79c-4rl2h\" not found" +11:52AM ERR Watcher failed for containers -- failed to locate pod "default/debian-685495c79c-4rl2h": pods "debian-685495c79c-4rl2h" not found error="failed to locate pod \"default/debian-685495c79c-4rl2h\": pods \"debian-685495c79c-4rl2h\" not found" +11:52AM WRN log-reader EOF error="stream closed EOF for default/debian-85b7f4c4c9-bpvr5 (debian)" +11:56AM WRN log-reader canceled error="stream canceled context canceled for default/debian-shell (debian-shell)" +11:56AM WRN Deleted (0) portforward for "default/debian-shell" +11:56AM ERR Command failed error="exit status 1" +11:56AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:56AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:56AM ERR Command failed error="exit status 1" +11:56AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:56AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:56AM ERR Command failed error="exit status 1" +11:56AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:56AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:56AM ERR Command failed error="exit status 1" +11:56AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:56AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="signal: interrupt" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": signal: interrupt + error="signal: interrupt\n" +11:57AM ERR Attach exec failed: signal: interrupt + error="signal: interrupt\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM ERR Command failed error="exit status 1" +11:57AM ERR Exec failed "/usr/local/bin/kubectl attach --context minikube -it -n default debian-shell -c debian-shell": exit status 1 + error="exit status 1\n" +11:57AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +11:57AM WRN Deleted (0) portforward for "default/debian-shell" +11:57AM WRN log-reader canceled error="stream canceled context canceled for default/debian-shell (debian-shell)" +12:49PM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +12:49PM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +12:49PM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for jk-matt/jk-matt-jkserver-0 (init-mounts)" +1:31PM ERR can't connect to cluster error="Get \"https://127.0.0.1:51137/version?timeout=15s\": context deadline exceeded" +1:31PM ERR ClusterUpdater failed error="conn check failed (1/5)" +1:49PM ERR can't connect to cluster error="Get \"https://127.0.0.1:51137/version?timeout=15s\": net/http: TLS handshake timeout" +1:49PM ERR ClusterUpdater failed error="conn check failed (2/5)" +1:49PM ERR can't connect to cluster error="Get \"https://127.0.0.1:51137/version?timeout=15s\": net/http: TLS handshake timeout" +1:49PM ERR ClusterUpdater failed error="conn check failed (3/5)" +1:50PM ERR can't connect to cluster error="Get \"https://127.0.0.1:51137/version?timeout=15s\": net/http: TLS handshake timeout" +1:50PM ERR ClusterUpdater failed error="conn check failed (4/5)" +1:50PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +1:50PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +2:15PM INF 🐶 K9s starting up... +2:15PM ERR Fail to locate metrics-server error="Get \"https://127.0.0.1:51137/api\": net/http: TLS handshake timeout" +2:15PM INF 🐶 K9s starting up... +2:16PM ERR Fail to locate metrics-server error="Get \"https://127.0.0.1:51137/api\": net/http: TLS handshake timeout" +2:38PM INF 🐶 K9s starting up... +2:38PM ERR Fail to locate metrics-server error="Get \"https://127.0.0.1:51137/api\": net/http: TLS handshake timeout" +2:38PM ERR can't connect to cluster error="Get \"https://127.0.0.1:51137/version?timeout=15s\": net/http: TLS handshake timeout" +2:38PM INF ✅ Kubernetes connectivity +2:38PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +2:38PM ERR Fail to load global/context configuration error="Get \"https://127.0.0.1:51137/api\": net/http: TLS handshake timeout\ncannot connect to context: minikube\nk8s connection failed for context: minikube" +2:38PM ERR Load cluster resources - No API server connection +2:38PM ERR failed to list contexts error="no connection" +2:38PM WRN Unable to dial discovery API error="no connection to dial" +2:38PM ERR can't connect to cluster error="Get \"https://127.0.0.1:51137/version?timeout=15s\": net/http: TLS handshake timeout" +2:38PM ERR Load cluster resources - No API server connection +2:38PM WRN Unable to dial discovery API error="no connection to dial" +2:39PM ERR can't connect to cluster error="Get \"https://127.0.0.1:51137/version?timeout=15s\": net/http: TLS handshake timeout" +2:39PM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:39PM ERR can't connect to cluster error="Get \"https://127.0.0.1:51137/version?timeout=15s\": net/http: TLS handshake timeout" +2:39PM ERR ClusterUpdater failed error="conn check failed (2/5)" +2:39PM ERR can't connect to cluster error="Get \"https://127.0.0.1:51137/version?timeout=15s\": net/http: TLS handshake timeout" +2:39PM ERR ClusterUpdater failed error="conn check failed (3/5)" +2:39PM ERR can't connect to cluster error="Get \"https://127.0.0.1:51137/version?timeout=15s\": net/http: TLS handshake timeout" +2:39PM ERR ClusterUpdater failed error="conn check failed (4/5)" +2:40PM ERR can't connect to cluster error="Get \"https://127.0.0.1:51137/version?timeout=15s\": net/http: TLS handshake timeout" +2:40PM ERR Conn check failed (5/5). Bailing out! +2:40PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +2:40PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +3:24PM INF 🐶 K9s starting up... +3:24PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +3:24PM INF ✅ Kubernetes connectivity +3:27PM INF 🐶 K9s starting up... +3:27PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +3:27PM INF ✅ Kubernetes connectivity +3:34PM INF 🐶 K9s starting up... +3:34PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +3:34PM INF ✅ Kubernetes connectivity +3:36PM INF 🐶 K9s starting up... +3:36PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +3:36PM INF ✅ Kubernetes connectivity +3:36PM INF 🐶 K9s starting up... +3:36PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +3:36PM INF ✅ Kubernetes connectivity +3:37PM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +3:37PM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +3:37PM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +3:37PM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +3:37PM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +3:37PM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +3:37PM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for jk-matt/jk-matt-jkserver-0 (init-mounts)" +3:37PM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +3:37PM INF 🐶 K9s starting up... +3:37PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +3:37PM INF ✅ Kubernetes connectivity +3:42PM WRN log-reader canceled error="stream canceled context canceled for kube-system/kube-apiserver-minikube (kube-apiserver)" +3:43PM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +3:43PM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +3:43PM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for jk-matt/jk-matt-jkserver-0 (init-mounts)" +3:44PM INF 🐶 K9s starting up... +3:44PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +3:44PM INF ✅ Kubernetes connectivity +3:44PM WRN log-reader canceled error="stream canceled context canceled for default/debian-shell (debian-shell)" +3:45PM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +3:45PM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +3:45PM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +3:45PM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +3:45PM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +3:45PM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +3:45PM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +3:45PM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for jk-matt/jk-matt-jkserver-0 (init-mounts)" +3:45PM INF 🐶 K9s starting up... +3:45PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +3:45PM INF ✅ Kubernetes connectivity +3:45PM INF 🐶 K9s starting up... +3:45PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +3:45PM INF ✅ Kubernetes connectivity +3:50PM INF 🐶 K9s starting up... +3:50PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +3:50PM INF ✅ Kubernetes connectivity +3:52PM INF 🐶 K9s starting up... +3:52PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +3:52PM INF ✅ Kubernetes connectivity +3:53PM INF 🐶 K9s starting up... +3:53PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +3:53PM INF ✅ Kubernetes connectivity +3:53PM INF 🐶 K9s starting up... +3:53PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +3:53PM INF ✅ Kubernetes connectivity +3:54PM INF 🐶 K9s starting up... +3:54PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +3:54PM INF ✅ Kubernetes connectivity +3:54PM INF 🐶 K9s starting up... +3:54PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +3:54PM INF ✅ Kubernetes connectivity +3:54PM INF 🐶 K9s starting up... +3:54PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +3:54PM INF ✅ Kubernetes connectivity +3:54PM INF 🐶 K9s starting up... +3:54PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +3:54PM INF ✅ Kubernetes connectivity +3:54PM INF 🐶 K9s starting up... +3:54PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +3:54PM INF ✅ Kubernetes connectivity +3:55PM INF 🐶 K9s starting up... +3:55PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +3:55PM INF ✅ Kubernetes connectivity +3:55PM INF 🐶 K9s starting up... +3:55PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +3:55PM INF ✅ Kubernetes connectivity +3:55PM INF 🐶 K9s starting up... +3:55PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +3:55PM INF ✅ Kubernetes connectivity +3:55PM INF 🐶 K9s starting up... +3:55PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +3:55PM INF ✅ Kubernetes connectivity +3:55PM INF 🐶 K9s starting up... +3:55PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +3:55PM INF ✅ Kubernetes connectivity +3:55PM ERR Failed to parse skin file -- onelight.yaml: Invalid type. Expected: string, given: null. +3:55PM ERR Failed to parse skin file -- onelight.yaml: Invalid type. Expected: string, given: null. +3:56PM INF 🐶 K9s starting up... +3:56PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +3:56PM INF ✅ Kubernetes connectivity +3:56PM INF 🐶 K9s starting up... +3:56PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +3:56PM INF ✅ Kubernetes connectivity +3:56PM WRN log-reader canceled error="stream canceled context canceled for default/debian-shell (debian-shell)" +3:56PM WRN log-reader canceled error="stream canceled context canceled for default/debian-shell (debian-shell)" +3:56PM INF 🐶 K9s starting up... +3:56PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +3:56PM INF ✅ Kubernetes connectivity +3:56PM INF 🐶 K9s starting up... +3:56PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +3:56PM INF ✅ Kubernetes connectivity +3:57PM INF 🐶 K9s starting up... +3:57PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +3:57PM INF ✅ Kubernetes connectivity +3:57PM INF 🐶 K9s starting up... +3:57PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +3:57PM INF ✅ Kubernetes connectivity +3:57PM INF 🐶 K9s starting up... +3:57PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +3:57PM INF ✅ Kubernetes connectivity +3:57PM INF 🐶 K9s starting up... +3:57PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +3:57PM INF ✅ Kubernetes connectivity +3:57PM INF 🐶 K9s starting up... +3:57PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +3:57PM INF ✅ Kubernetes connectivity +3:57PM INF 🐶 K9s starting up... +3:57PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +3:57PM INF ✅ Kubernetes connectivity +8:52AM INF 🐶 K9s starting up... +8:52AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +8:52AM INF ✅ Kubernetes connectivity +9:32AM INF 🐶 K9s starting up... +9:32AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +9:32AM INF ✅ Kubernetes connectivity +9:57AM INF 🐶 K9s starting up... +9:57AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +9:57AM INF ✅ Kubernetes connectivity +10:00AM INF 🐶 K9s starting up... +10:00AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +10:00AM INF ✅ Kubernetes connectivity +10:18AM WRN log-reader canceled error="stream canceled context canceled for default/debian-shell (debian-shell)" +11:35AM INF 🐶 K9s starting up... +11:35AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +11:35AM INF ✅ Kubernetes connectivity +11:38AM INF 🐶 K9s starting up... +11:38AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +11:38AM INF ✅ Kubernetes connectivity +11:38AM INF 🐶 K9s starting up... +11:38AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +11:38AM INF ✅ Kubernetes connectivity +11:39AM INF 🐶 K9s starting up... +11:39AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +11:39AM INF ✅ Kubernetes connectivity +11:39AM ERR Failed to parse skin file -- onelight.yaml: Invalid type. Expected: string, given: null +Invalid type. Expected: string, given: null. +11:39AM ERR Failed to parse skin file -- onelight.yaml: Invalid type. Expected: string, given: null +Invalid type. Expected: string, given: null. +11:41AM INF 🐶 K9s starting up... +11:41AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +11:41AM INF ✅ Kubernetes connectivity +11:42AM INF 🐶 K9s starting up... +11:42AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +11:42AM INF ✅ Kubernetes connectivity +11:42AM INF 🐶 K9s starting up... +11:42AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +11:42AM INF ✅ Kubernetes connectivity +11:43AM INF 🐶 K9s starting up... +11:43AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +11:43AM INF ✅ Kubernetes connectivity +11:44AM INF 🐶 K9s starting up... +11:44AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +11:44AM INF ✅ Kubernetes connectivity +11:47AM INF 🐶 K9s starting up... +11:47AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +11:47AM INF ✅ Kubernetes connectivity +11:47AM INF 🐶 K9s starting up... +11:47AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +11:47AM INF ✅ Kubernetes connectivity +11:47AM INF 🐶 K9s starting up... +11:47AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +11:47AM INF ✅ Kubernetes connectivity +11:48AM WRN log-reader canceled error="stream canceled context canceled for default/debian-shell (debian-shell)" +11:49AM INF 🐶 K9s starting up... +11:49AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +11:49AM INF ✅ Kubernetes connectivity +11:50AM INF 🐶 K9s starting up... +11:50AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +11:50AM INF ✅ Kubernetes connectivity +11:50AM INF 🐶 K9s starting up... +11:50AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +11:50AM INF ✅ Kubernetes connectivity +11:52AM INF 🐶 K9s starting up... +11:52AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +11:52AM INF ✅ Kubernetes connectivity +11:53AM INF 🐶 K9s starting up... +11:53AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +11:53AM INF ✅ Kubernetes connectivity +11:53AM INF 🐶 K9s starting up... +11:53AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +11:53AM INF ✅ Kubernetes connectivity +11:54AM INF 🐶 K9s starting up... +11:54AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +11:54AM INF ✅ Kubernetes connectivity +11:54AM INF 🐶 K9s starting up... +11:54AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +11:54AM INF ✅ Kubernetes connectivity +11:54AM INF 🐶 K9s starting up... +11:54AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +11:54AM INF ✅ Kubernetes connectivity +11:55AM INF 🐶 K9s starting up... +11:55AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +11:55AM INF ✅ Kubernetes connectivity +11:56AM INF 🐶 K9s starting up... +11:56AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +11:56AM INF ✅ Kubernetes connectivity +11:56AM INF 🐶 K9s starting up... +11:56AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +11:56AM INF ✅ Kubernetes connectivity +11:56AM INF 🐶 K9s starting up... +11:56AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +11:56AM INF ✅ Kubernetes connectivity +11:56AM INF 🐶 K9s starting up... +11:56AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +11:56AM INF ✅ Kubernetes connectivity +11:57AM INF 🐶 K9s starting up... +11:57AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +11:57AM INF ✅ Kubernetes connectivity +11:57AM INF 🐶 K9s starting up... +11:57AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +11:57AM INF ✅ Kubernetes connectivity +11:57AM INF 🐶 K9s starting up... +11:57AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +11:57AM INF ✅ Kubernetes connectivity +11:57AM INF 🐶 K9s starting up... +11:57AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +11:57AM INF ✅ Kubernetes connectivity +11:57AM INF 🐶 K9s starting up... +11:57AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +11:57AM INF ✅ Kubernetes connectivity +11:57AM INF 🐶 K9s starting up... +11:57AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +11:57AM INF ✅ Kubernetes connectivity +11:58AM INF 🐶 K9s starting up... +11:58AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +11:58AM INF ✅ Kubernetes connectivity +11:58AM INF 🐶 K9s starting up... +11:58AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +11:58AM INF ✅ Kubernetes connectivity +11:58AM INF 🐶 K9s starting up... +11:58AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +11:58AM INF ✅ Kubernetes connectivity +11:59AM INF 🐶 K9s starting up... +11:59AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +11:59AM INF ✅ Kubernetes connectivity +11:59AM INF 🐶 K9s starting up... +11:59AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +11:59AM INF ✅ Kubernetes connectivity +11:59AM INF 🐶 K9s starting up... +11:59AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +11:59AM INF ✅ Kubernetes connectivity +11:59AM INF 🐶 K9s starting up... +11:59AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +11:59AM INF ✅ Kubernetes connectivity +12:00PM INF 🐶 K9s starting up... +12:00PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +12:00PM INF ✅ Kubernetes connectivity +12:01PM INF 🐶 K9s starting up... +12:01PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +12:01PM INF ✅ Kubernetes connectivity +12:01PM INF 🐶 K9s starting up... +12:01PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +12:01PM INF ✅ Kubernetes connectivity +1:24PM ERR can't connect to cluster error="Get \"https://127.0.0.1:51137/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +1:24PM ERR ClusterUpdater failed error="conn check failed (1/5)" +1:24PM WRN log-reader canceled error="stream canceled context canceled for kube-system/kube-apiserver-minikube (kube-apiserver)" +1:25PM ERR can't connect to cluster error="Get \"https://127.0.0.1:51137/version?timeout=15s\": context deadline exceeded - error from a previous attempt: http2: client connection lost" +1:25PM ERR ClusterUpdater failed error="conn check failed (2/5)" +1:25PM ERR refresh failed for gvr: containers error="failed to locate pod \"kube-system/kube-apiserver-minikube\": ACCESS -- No API server connection" +1:25PM WRN Unable to dial discovery API error="no connection to dial" +1:25PM ERR Watcher failed for containers -- failed to locate pod "kube-system/kube-apiserver-minikube": ACCESS -- No API server connection error="failed to locate pod \"kube-system/kube-apiserver-minikube\": ACCESS -- No API server connection" +1:25PM ERR refresh failed for gvr: v1/pods error="ACCESS -- No API server connection" +1:25PM ERR Watcher failed for v1/pods -- ACCESS -- No API server connection error="ACCESS -- No API server connection" +1:25PM ERR Watcher failed for containers -- failed to locate pod "jk-matt/jk-matt-jkserver-0": ACCESS -- No API server connection error="failed to locate pod \"jk-matt/jk-matt-jkserver-0\": ACCESS -- No API server connection" +1:25PM ERR refresh failed for gvr: v1/pods error="ACCESS -- No API server connection" +1:25PM ERR Watcher failed for v1/pods -- ACCESS -- No API server connection error="ACCESS -- No API server connection" +1:25PM ERR Watcher failed for containers -- failed to locate pod "jk-matt/jk-matt-jkserver-0": ACCESS -- No API server connection error="failed to locate pod \"jk-matt/jk-matt-jkserver-0\": ACCESS -- No API server connection" +1:25PM ERR refresh failed for gvr: v1/pods error="ACCESS -- No API server connection" +1:25PM ERR Watcher failed for v1/pods -- ACCESS -- No API server connection error="ACCESS -- No API server connection" +1:25PM ERR Watcher failed for containers -- failed to locate pod "kube-system/kube-apiserver-minikube": ACCESS -- No API server connection error="failed to locate pod \"kube-system/kube-apiserver-minikube\": ACCESS -- No API server connection" +1:25PM ERR refresh failed for gvr: v1/pods error="ACCESS -- No API server connection" +1:25PM ERR Watcher failed for v1/pods -- ACCESS -- No API server connection error="ACCESS -- No API server connection" +1:25PM ERR Watcher failed for containers -- failed to locate pod "jk-matt/jk-matt-jkserver-0": ACCESS -- No API server connection error="failed to locate pod \"jk-matt/jk-matt-jkserver-0\": ACCESS -- No API server connection" +1:25PM ERR refresh failed for gvr: v1/pods error="ACCESS -- No API server connection" +1:25PM ERR Watcher failed for v1/pods -- ACCESS -- No API server connection error="ACCESS -- No API server connection" +1:25PM ERR can't connect to cluster error="Get \"https://127.0.0.1:51137/version?timeout=15s\": net/http: TLS handshake timeout" +1:25PM ERR ClusterUpdater failed error="conn check failed (3/5)" +1:26PM ERR can't connect to cluster error="Get \"https://127.0.0.1:51137/version?timeout=15s\": net/http: TLS handshake timeout" +1:26PM ERR ClusterUpdater failed error="conn check failed (4/5)" +1:26PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +1:26PM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +1:41PM INF 🐶 K9s starting up... +1:41PM ERR config refine failed error="unable to activate context \"\": getcontext - invalid context specified: \"\"" +1:41PM ERR Fail to locate metrics-server error="Get \"http://localhost:8080/api\": dial tcp 127.0.0.1:8080: connect: connection refused" +1:41PM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp 127.0.0.1:8080: connect: connection refused" +1:41PM INF ✅ Kubernetes connectivity +1:41PM WRN Save failed. no active config detected +1:41PM ERR Fail to load global/context configuration error="unable to activate context \"\": getcontext - invalid context specified: \"\"\nGet \"http://localhost:8080/api\": dial tcp 127.0.0.1:8080: connect: connection refused\ncannot connect to context: \nk8s connection failed for context: " +1:41PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +1:41PM ERR Load cluster resources - No API server connection +1:41PM ERR failed to list contexts error="no connection" +1:41PM WRN Unable to dial discovery API error="no connection to dial" +1:41PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +1:41PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +1:41PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +1:41PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +1:41PM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp 127.0.0.1:8080: connect: connection refused" +1:41PM ERR Load cluster resources - No API server connection +1:41PM WRN Unable to dial discovery API error="no connection to dial" +1:41PM WRN Plugins load failed: getcontext - invalid context specified: "" +1:41PM WRN Plugins load failed: getcontext - invalid context specified: "" +1:41PM WRN Save failed. no active config detected +1:41PM ERR nuking k9s shell pod error="getcontext - invalid context specified: \"\"" +1:41PM WRN Save failed. no active config detected +1:42PM INF 🐶 K9s starting up... +1:42PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +1:42PM INF ✅ Kubernetes connectivity +1:43PM INF 🐶 K9s starting up... +1:43PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +1:43PM INF ✅ Kubernetes connectivity +1:43PM WRN log-reader EOF error="stream closed EOF for default/debian (debian)" +1:44PM INF 🐶 K9s starting up... +1:44PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +1:44PM INF ✅ Kubernetes connectivity +1:44PM INF 🐶 K9s starting up... +1:44PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +1:44PM INF ✅ Kubernetes connectivity +1:47PM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +1:47PM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +1:47PM ERR logs-stream error="stream logs failed container \"init-mounts\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (init-mounts)" +1:47PM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +1:47PM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for jk-matt/jk-matt-jkserver-0 (init-mounts)" +1:47PM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +1:47PM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +1:47PM ERR logs-stream error="stream logs failed container \"jk-matt-jkserver\" in pod \"jk-matt-jkserver-0\" is waiting to start: PodInitializing for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +1:47PM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +2:02PM WRN log-reader EOF error="stream closed EOF for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +2:02PM WRN log-reader EOF error="stream closed EOF for jk-matt/jk-matt-jkserver-0 (init-mounts)" +2:02PM WRN log-reader EOF error="stream closed EOF for jk-matt/jk-matt-jkserver-0 (init-mounts)" +2:02PM WRN log-reader EOF error="stream closed EOF for jk-matt/jk-matt-jkserver-0 (init-mounts)" +2:06PM WRN log-reader canceled error="stream canceled context canceled for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +2:17PM ERR lost connection to pod +2:17PM WRN Deleted (1) portforward for "jk-matt/jk-matt-jkserver-0|jk-matt-jkserver|8080:8080" +3:05PM WRN log-reader canceled error="stream canceled context canceled for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +3:05PM WRN log-reader EOF error="stream closed EOF for jk-matt/jk-matt-jkserver-0 (init-mounts)" +3:11PM ERR Command failed error="exit status 1" +3:11PM ERR Exec failed "/usr/local/bin/kubectl attach --context kind-kind -it -n jk-matt jk-matt-jkserver-0 -c jk-matt-jkserver": exit status 1 + error="exit status 1\n" +3:11PM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +3:12PM WRN log-reader EOF error="stream closed EOF for jk-matt/jk-matt-jkserver-0 (init-mounts)" +3:14PM WRN Deleted (0) portforward for "jk-matt/jk-matt-jkserver-0|jk-matt-jkserver|8080:8080" +3:14PM ERR refresh failed for gvr: containers error="failed to locate pod \"jk-matt/jk-matt-jkserver-0\": pods \"jk-matt-jkserver-0\" not found" +3:14PM ERR Watcher failed for containers -- failed to locate pod "jk-matt/jk-matt-jkserver-0": pods "jk-matt-jkserver-0" not found error="failed to locate pod \"jk-matt/jk-matt-jkserver-0\": pods \"jk-matt-jkserver-0\" not found" +3:15PM WRN log-reader canceled error="stream canceled context canceled for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +3:15PM WRN log-reader EOF error="stream closed EOF for jk-matt/jk-matt-jkserver-0 (init-mounts)" +3:16PM WRN log-reader canceled error="stream canceled context canceled for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +3:16PM WRN log-reader EOF error="stream closed EOF for jk-matt/jk-matt-jkserver-0 (init-mounts)" +3:16PM WRN log-reader canceled error="stream canceled context canceled for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +3:16PM WRN log-reader EOF error="stream closed EOF for jk-matt/jk-matt-jkserver-0 (init-mounts)" +3:16PM WRN log-reader canceled error="stream canceled context canceled for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +3:16PM WRN log-reader EOF error="stream closed EOF for jk-matt/jk-matt-jkserver-0 (init-mounts)" +3:39PM WRN log-reader EOF error="stream closed EOF for jk-matt/jk-matt-jkserver-0 (init-mounts)" +3:40PM ERR refresh failed for gvr: containers error="failed to locate pod \"jk-matt/jk-matt-jkserver-0\": pods \"jk-matt-jkserver-0\" not found" +3:40PM ERR Watcher failed for containers -- failed to locate pod "jk-matt/jk-matt-jkserver-0": pods "jk-matt-jkserver-0" not found error="failed to locate pod \"jk-matt/jk-matt-jkserver-0\": pods \"jk-matt-jkserver-0\" not found" +3:40PM WRN log-reader EOF error="stream closed EOF for jk-matt/jk-matt-jkserver-0 (init-mounts)" +3:41PM WRN log-reader EOF error="stream closed EOF for jk-matt/jk-matt-jkserver-0 (init-mounts)" +8:54AM INF 🐶 K9s starting up... +8:54AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +8:54AM INF ✅ Kubernetes connectivity +8:56AM INF 🐶 K9s starting up... +8:56AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +8:56AM INF ✅ Kubernetes connectivity +8:57AM INF 🐶 K9s starting up... +8:57AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +8:57AM INF ✅ Kubernetes connectivity +9:05AM INF 🐶 K9s starting up... +9:05AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +9:05AM INF ✅ Kubernetes connectivity +9:06AM WRN log-reader canceled error="stream canceled context canceled for jk-matt/jk-matt-jkserver-0 (jk-matt-jkserver)" +11:56AM INF 🐶 K9s starting up... +11:56AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +11:56AM INF ✅ Kubernetes connectivity +11:57AM INF 🐶 K9s starting up... +11:57AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +11:57AM INF ✅ Kubernetes connectivity +11:57AM WRN log-reader EOF error="stream closed EOF for jk-matt/jk-matt-jkserver-0 (init-mounts)" +11:59AM INF 🐶 K9s starting up... +11:59AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +11:59AM INF ✅ Kubernetes connectivity +11:59AM ERR logs-stream error="stream logs failed container \"tibdgproxy\" in pod \"proxy-0\" is waiting to start: InvalidImageName for default/proxy-0 (tibdgproxy)" +11:59AM ERR logs-stream error="stream logs failed container \"tibdgproxy\" in pod \"proxy-0\" is waiting to start: InvalidImageName for default/proxy-0 (tibdgproxy)" +11:59AM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for default/proxy-0 (tibdgproxy)" +2:47PM INF 🐶 K9s starting up... +2:47PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +2:47PM INF ✅ Kubernetes connectivity +11:42AM ERR can't connect to cluster error="Get \"https://127.0.0.1:53215/version?timeout=15s\": dial tcp 127.0.0.1:53215: connect: connection refused" +11:42AM ERR ClusterUpdater failed error="conn check failed (1/5)" +11:42AM ERR can't connect to cluster error="Get \"https://127.0.0.1:53215/version?timeout=15s\": dial tcp 127.0.0.1:53215: connect: connection refused" +11:42AM ERR ClusterUpdater failed error="conn check failed (2/5)" +11:42AM ERR can't connect to cluster error="Get \"https://127.0.0.1:53215/version?timeout=15s\": dial tcp 127.0.0.1:53215: connect: connection refused" +11:42AM ERR ClusterUpdater failed error="conn check failed (3/5)" +11:43AM ERR can't connect to cluster error="Get \"https://127.0.0.1:53215/version?timeout=15s\": dial tcp 127.0.0.1:53215: connect: connection refused" +11:43AM ERR ClusterUpdater failed error="conn check failed (4/5)" +11:43AM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +11:43AM WRN namespace validation failed for: "default" error="user not authorized to list all namespaces" +1:08PM INF 🐶 K9s starting up... +1:08PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +1:08PM INF ✅ Kubernetes connectivity +1:32PM WRN log-reader canceled error="stream canceled context canceled for default/nginx-deployment-647677fc66-9jrdt (nginx)" +1:32PM WRN log-reader canceled error="stream canceled context canceled for default/nginx-deployment-647677fc66-9jrdt (nginx)" +1:54PM INF 🐶 K9s starting up... +1:54PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +1:54PM INF ✅ Kubernetes connectivity +2:54PM INF 🐶 K9s starting up... +2:54PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +2:54PM INF ✅ Kubernetes connectivity +2:55PM INF 🐶 K9s starting up... +2:55PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +2:55PM INF ✅ Kubernetes connectivity +2:55PM ERR no port-forward defined +10:10AM INF 🐶 K9s starting up... +10:10AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +10:10AM INF ✅ Kubernetes connectivity +10:10AM INF 🐶 K9s starting up... +10:10AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +10:10AM INF ✅ Kubernetes connectivity +10:11AM INF 🐶 K9s starting up... +10:11AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +10:11AM INF ✅ Kubernetes connectivity +11:02AM INF 🐶 K9s starting up... +11:02AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +11:02AM INF ✅ Kubernetes connectivity +1:18PM INF 🐶 K9s starting up... +1:18PM INF ✅ Kubernetes connectivity +1:44PM INF 🐶 K9s starting up... +1:44PM INF ✅ Kubernetes connectivity +10:37AM INF 🐶 K9s starting up... +10:37AM INF ✅ Kubernetes connectivity +10:37AM INF 🐶 K9s starting up... +10:37AM INF ✅ Kubernetes connectivity +3:39PM INF 🐶 K9s starting up... +3:39PM INF ✅ Kubernetes connectivity +3:39PM INF 🐶 K9s starting up... +3:39PM INF ✅ Kubernetes connectivity +3:44PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded (Client.Timeout exceeded while awaiting headers)" +3:44PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:45PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +3:45PM ERR ClusterUpdater failed error="conn check failed (2/5)" +9:45PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +9:45PM ERR ClusterUpdater failed error="conn check failed (1/5)" +10:44PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +10:44PM ERR ClusterUpdater failed error="conn check failed (1/5)" +10:45PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +10:45PM ERR ClusterUpdater failed error="conn check failed (2/5)" +10:45PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +10:45PM ERR ClusterUpdater failed error="conn check failed (3/5)" +10:45PM WRN namespace validation failed for: "matt-dp" error="user not authorized to list all namespaces" +10:45PM WRN namespace validation failed for: "matt-dp" error="user not authorized to list all namespaces" +2:09PM INF 🐶 K9s starting up... +2:09PM INF ✅ Kubernetes connectivity +2:09PM WRN log-reader EOF error="stream closed EOF for cp-automation-dp/tp-tibtunnel-694fdc4b75-v5jg7 (tibtunnel-init)" +2:09PM WRN log-reader EOF error="stream closed EOF for cp-automation-dp/tp-tibtunnel-694fdc4b75-v5jg7 (provisioner-agent-probe)" +2:09PM WRN log-reader EOF error="stream closed EOF for cp-automation-dp/tp-tibtunnel-694fdc4b75-v5jg7 (tibtunnel)" +2:34PM INF 🐶 K9s starting up... +2:34PM INF ✅ Kubernetes connectivity +2:34PM INF 🐶 K9s starting up... +2:34PM INF ✅ Kubernetes connectivity +2:35PM WRN log-reader EOF error="stream closed EOF for cp-automation-dp/tp-tibtunnel-576bc79cbc-5mttx (tibtunnel)" +2:35PM WRN log-reader EOF error="stream closed EOF for cp-automation-dp/tp-tibtunnel-576bc79cbc-5mttx (tibtunnel)" +2:35PM WRN log-reader EOF error="stream closed EOF for cp-automation-dp/tp-tibtunnel-694fdc4b75-v5jg7 (tibtunnel)" +2:35PM WRN log-reader EOF error="stream closed EOF for cp-automation-dp/tp-tibtunnel-694fdc4b75-v5jg7 (tibtunnel)" +2:36PM WRN log-reader EOF error="stream closed EOF for cp-automation-dp/tp-tibtunnel-576bc79cbc-5mttx (tibtunnel)" +3:25PM INF 🐶 K9s starting up... +3:25PM INF ✅ Kubernetes connectivity +3:25PM INF 🐶 K9s starting up... +3:25PM INF ✅ Kubernetes connectivity +3:26PM INF 🐶 K9s starting up... +3:26PM INF ✅ Kubernetes connectivity +3:26PM INF 🐶 K9s starting up... +3:26PM INF ✅ Kubernetes connectivity +3:28PM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/provisioner-agent-ff6d4fb8c-bgtqq (fluentbit)" +6:01PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +6:01PM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:10PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +8:10PM ERR ClusterUpdater failed error="conn check failed (1/5)" +9:12PM WRN  Dial Failed! error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": read tcp 10.123.230.38:58922->10.97.130.64:443: read: connection reset by peer" +9:12PM ERR refresh failed for gvr: v1/pods error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": read tcp 10.123.230.38:58922->10.97.130.64:443: read: connection reset by peer" +9:12PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +9:12PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +9:12PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +9:12PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +9:12PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +9:12PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +9:12PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +9:12PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +9:12PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +9:13PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +9:13PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +9:13PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +9:14PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +9:14PM WRN reconciler exited error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +9:14PM ERR [list] access denied on resource "cp-automation-dp":"v1/pods" +10:47AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +10:47AM ERR ClusterUpdater failed error="conn check failed (1/5)" +11:48AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +11:48AM ERR ClusterUpdater failed error="conn check failed (1/5)" +12:35PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +12:35PM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:46PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +8:46PM ERR ClusterUpdater failed error="conn check failed (1/5)" +10:47PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +10:47PM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:29AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +8:29AM ERR ClusterUpdater failed error="conn check failed (1/5)" +9:48AM WRN  Dial Failed! error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": read tcp 10.123.230.38:50984->10.97.130.64:443: read: connection reset by peer" +9:48AM ERR refresh failed for gvr: v1/pods error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": read tcp 10.123.230.38:50984->10.97.130.64:443: read: connection reset by peer" +9:48AM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +9:48AM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +9:48AM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +9:48AM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +9:48AM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +9:48AM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +9:48AM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +9:48AM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +9:49AM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +9:49AM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +9:49AM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +9:49AM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +9:50AM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +9:50AM WRN reconciler exited error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +9:50AM ERR [list] access denied on resource "cp-automation-dp":"v1/pods" +12:33PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +12:33PM ERR ClusterUpdater failed error="conn check failed (1/5)" +1:15PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +1:15PM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:35PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +2:35PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:36PM WRN  Dial Failed! error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": read tcp 10.123.230.38:52378->10.97.130.64:443: read: connection reset by peer" +3:36PM ERR refresh failed for gvr: v1/pods error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": read tcp 10.123.230.38:52378->10.97.130.64:443: read: connection reset by peer" +3:36PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +3:36PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +3:36PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +3:36PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +3:36PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +3:36PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +3:36PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +3:36PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +3:36PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +3:37PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +3:37PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +3:37PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +3:38PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +3:38PM WRN reconciler exited error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +3:38PM ERR [list] access denied on resource "cp-automation-dp":"v1/pods" +9:28PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +9:28PM ERR ClusterUpdater failed error="conn check failed (1/5)" +5:15AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +5:15AM ERR ClusterUpdater failed error="conn check failed (1/5)" +5:41AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +5:41AM ERR ClusterUpdater failed error="conn check failed (1/5)" +7:16AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +7:16AM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:18AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +8:18AM ERR ClusterUpdater failed error="conn check failed (1/5)" +9:44AM INF 🐶 K9s starting up... +9:44AM INF ✅ Kubernetes connectivity +9:45AM INF 🐶 K9s starting up... +9:45AM INF ✅ Kubernetes connectivity +10:28AM INF 🐶 K9s starting up... +10:28AM INF ✅ Kubernetes connectivity +9:52AM INF 🐶 K9s starting up... +9:52AM INF ✅ Kubernetes connectivity +9:53AM INF 🐶 K9s starting up... +9:53AM INF ✅ Kubernetes connectivity +9:53AM ERR logs-stream error="stream logs failed container \"fluentbit\" in pod \"tp-tibtunnel-6b59c58c55-vrsgt\" is waiting to start: PodInitializing for cp-automation-dp/tp-tibtunnel-6b59c58c55-vrsgt (fluentbit)" +9:53AM ERR logs-stream error="stream logs failed container \"fluentbit\" in pod \"tp-tibtunnel-6b59c58c55-vrsgt\" is waiting to start: PodInitializing for cp-automation-dp/tp-tibtunnel-6b59c58c55-vrsgt (fluentbit)" +9:53AM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for cp-automation-dp/tp-tibtunnel-6b59c58c55-vrsgt (fluentbit)" +9:54AM INF 🐶 K9s starting up... +9:54AM INF ✅ Kubernetes connectivity +9:55AM WRN log-reader EOF error="stream closed EOF for cp-automation-dp/tp-tibtunnel-549496d54f-hq5jj (tibtunnel)" +9:55AM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/tp-tibtunnel-549496d54f-hq5jj (fluentbit)" +9:57AM INF 🐶 K9s starting up... +9:57AM INF ✅ Kubernetes connectivity +9:58AM INF 🐶 K9s starting up... +9:58AM INF ✅ Kubernetes connectivity +11:00AM INF 🐶 K9s starting up... +11:00AM INF ✅ Kubernetes connectivity +11:00AM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/tp-tibtunnel-6495dfd58f-smb4t (fluentbit)" +11:55AM INF 🐶 K9s starting up... +11:55AM INF ✅ Kubernetes connectivity +11:57AM INF 🐶 K9s starting up... +11:57AM INF ✅ Kubernetes connectivity +11:57AM INF 🐶 K9s starting up... +11:57AM INF ✅ Kubernetes connectivity +12:03PM INF 🐶 K9s starting up... +12:03PM INF ✅ Kubernetes connectivity +12:03PM WRN log-reader canceled error="stream canceled context canceled for vdp/cmoetest2-ems-1 (cmoetest2-ems)" +2:07PM INF 🐶 K9s starting up... +2:07PM INF ✅ Kubernetes connectivity +2:08PM WRN log-reader canceled error="stream canceled context canceled for msg-qa/qa-sts-0 (msg-qa)" +2:08PM WRN log-reader canceled error="stream canceled context canceled for msg-qa/qa-sts-0 (msg-qa)" +2:08PM INF 🐶 K9s starting up... +2:08PM INF ✅ Kubernetes connectivity +2:08PM INF 🐶 K9s starting up... +2:08PM INF ✅ Kubernetes connectivity +2:08PM ERR logs-stream error="stream logs failed container \"tibtunnel-init\" in pod \"tp-tibtunnel-68d846cc8-z5glb\" is waiting to start: PodInitializing for cp-automation-dp/tp-tibtunnel-68d846cc8-z5glb (tibtunnel-init)" +2:08PM ERR logs-stream error="stream logs failed Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/api/v1/namespaces/cp-automation-dp/pods/tp-tibtunnel-68d846cc8-z5glb/log?container=tibtunnel-init&follow=true&tailLines=100×tamps=true\": context canceled for cp-automation-dp/tp-tibtunnel-68d846cc8-z5glb (tibtunnel-init)" +2:08PM ERR logs-stream error="stream logs failed container \"provisioner-agent-probe\" in pod \"tp-tibtunnel-68d846cc8-z5glb\" is waiting to start: PodInitializing for cp-automation-dp/tp-tibtunnel-68d846cc8-z5glb (provisioner-agent-probe)" +2:08PM ERR logs-stream error="stream logs failed container \"provisioner-agent-probe\" in pod \"tp-tibtunnel-68d846cc8-z5glb\" is waiting to start: PodInitializing for cp-automation-dp/tp-tibtunnel-68d846cc8-z5glb (provisioner-agent-probe)" +2:08PM ERR logs-stream error="stream logs failed container \"tibtunnel\" in pod \"tp-tibtunnel-68d846cc8-z5glb\" is waiting to start: PodInitializing for cp-automation-dp/tp-tibtunnel-68d846cc8-z5glb (tibtunnel)" +2:08PM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for cp-automation-dp/tp-tibtunnel-68d846cc8-z5glb (provisioner-agent-probe)" +2:08PM ERR logs-stream error="stream logs failed container \"fluentbit\" in pod \"tp-tibtunnel-68d846cc8-z5glb\" is waiting to start: PodInitializing for cp-automation-dp/tp-tibtunnel-68d846cc8-z5glb (fluentbit)" +2:08PM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for cp-automation-dp/tp-tibtunnel-68d846cc8-z5glb (tibtunnel)" +2:08PM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for cp-automation-dp/tp-tibtunnel-68d846cc8-z5glb (fluentbit)" +1:50PM INF 🐶 K9s starting up... +1:50PM INF ✅ Kubernetes connectivity +1:51PM INF 🐶 K9s starting up... +1:51PM INF ✅ Kubernetes connectivity +1:51PM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/tp-tibtunnel-5b585fb469-284cc (tibtunnel)" +1:51PM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/cpdpproxy-d87bc5d84-n98jf (haproxy-controller)" +1:51PM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/provisioner-agent-69dcf7785c-bh7g8 (provisioner-agent)" +1:51PM WRN log-reader EOF error="stream closed EOF for cp-automation-dp/tp-tibtunnel-5b585fb469-284cc (tibtunnel-init)" +1:51PM WRN log-reader EOF error="stream closed EOF for cp-automation-dp/tp-tibtunnel-5b585fb469-284cc (tibtunnel-init)" +10:47AM INF 🐶 K9s starting up... +10:47AM INF ✅ Kubernetes connectivity +10:48AM INF 🐶 K9s starting up... +10:48AM INF ✅ Kubernetes connectivity +10:48AM INF 🐶 K9s starting up... +10:48AM INF ✅ Kubernetes connectivity +10:48AM INF 🐶 K9s starting up... +10:48AM INF ✅ Kubernetes connectivity +12:49PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +12:49PM ERR ClusterUpdater failed error="conn check failed (1/5)" +1:20PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +1:20PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:18PM WRN  Dial Failed! error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": context deadline exceeded" +3:18PM ERR refresh failed for gvr: v1/pods error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": context deadline exceeded" +3:18PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +3:18PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +3:18PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +3:18PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +3:18PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +3:18PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:18PM WRN reconciler exited error="context canceled" +3:58PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +3:58PM ERR ClusterUpdater failed error="conn check failed (1/5)" +6:58PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +6:58PM ERR ClusterUpdater failed error="conn check failed (1/5)" +7:59PM WRN  Dial Failed! error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": read tcp 10.123.230.38:55554->10.97.130.64:443: read: connection reset by peer" +7:59PM ERR refresh failed for gvr: v1/pods error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": read tcp 10.123.230.38:55554->10.97.130.64:443: read: connection reset by peer" +7:59PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +7:59PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +7:59PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +7:59PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +7:59PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +7:59PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +7:59PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +7:59PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +7:59PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +7:59PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +7:59PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +8:00PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +8:00PM WRN reconciler exited error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +8:00PM ERR [list] access denied on resource "cp-automation-dp":"v1/pods" +11:00PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +11:00PM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:02AM WRN  Dial Failed! error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": context deadline exceeded" +2:02AM ERR refresh failed for gvr: v1/pods error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": context deadline exceeded" +2:02AM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +2:02AM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +2:02AM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +2:02AM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +2:02AM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +2:02AM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +2:02AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +2:02AM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:02AM WRN reconciler exited error="context canceled" +2:20AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +2:20AM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:20AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: connection refused" +2:20AM ERR ClusterUpdater failed error="conn check failed (2/5)" +2:20AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: connection refused" +2:20AM ERR ClusterUpdater failed error="conn check failed (3/5)" +2:21AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: connection refused" +2:21AM ERR ClusterUpdater failed error="conn check failed (4/5)" +2:21AM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +2:21AM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +1:05PM INF 🐶 K9s starting up... +1:05PM INF ✅ Kubernetes connectivity +1:06PM INF 🐶 K9s starting up... +1:06PM INF ✅ Kubernetes connectivity +1:06PM INF 🐶 K9s starting up... +1:06PM INF ✅ Kubernetes connectivity +1:34PM INF 🐶 K9s starting up... +1:34PM INF ✅ Kubernetes connectivity +1:34PM INF 🐶 K9s starting up... +1:34PM INF ✅ Kubernetes connectivity +2:17PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +2:17PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:21PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +3:21PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:33PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +3:33PM ERR ClusterUpdater failed error="conn check failed (1/5)" +5:07PM WRN  Dial Failed! error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": read tcp 10.123.230.38:51862->10.97.130.64:443: read: connection reset by peer" +1:02AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +1:02AM ERR ClusterUpdater failed error="conn check failed (1/5)" +1:52AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +1:52AM ERR ClusterUpdater failed error="conn check failed (1/5)" +6:04AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +6:04AM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:06AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +8:06AM ERR ClusterUpdater failed error="conn check failed (1/5)" +12:16PM INF 🐶 K9s starting up... +12:16PM INF ✅ Kubernetes connectivity +12:16PM INF 🐶 K9s starting up... +12:16PM INF ✅ Kubernetes connectivity +1:59PM INF 🐶 K9s starting up... +1:59PM INF ✅ Kubernetes connectivity +2:19PM INF 🐶 K9s starting up... +2:19PM INF ✅ Kubernetes connectivity +2:21PM WRN Deleted (0) portforward for "cp-automation-dp/emsbasic1-9267" +2:22PM INF 🐶 K9s starting up... +2:22PM INF ✅ Kubernetes connectivity +2:24PM INF 🐶 K9s starting up... +2:24PM INF ✅ Kubernetes connectivity +2:24PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-7366-xzhdg\" is waiting to start: trying and failing to pull image for cp-automation-dp/emsbasic1-7366-xzhdg (run-test)" +2:24PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-7366-xzhdg\" is waiting to start: trying and failing to pull image for cp-automation-dp/emsbasic1-7366-xzhdg (run-test)" +2:24PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-7366-xzhdg\" is waiting to start: trying and failing to pull image for cp-automation-dp/emsbasic1-7366-xzhdg (run-test)" +2:24PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-7366-xzhdg\" is waiting to start: trying and failing to pull image for cp-automation-dp/emsbasic1-7366-xzhdg (run-test)" +2:24PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-7366-xzhdg\" is waiting to start: trying and failing to pull image for cp-automation-dp/emsbasic1-7366-xzhdg (run-test)" +2:24PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-7366-xzhdg\" is waiting to start: trying and failing to pull image for cp-automation-dp/emsbasic1-7366-xzhdg (run-test)" +2:24PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-7366-xzhdg\" is waiting to start: trying and failing to pull image for cp-automation-dp/emsbasic1-7366-xzhdg (run-test)" +2:24PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-7366-xzhdg\" is waiting to start: trying and failing to pull image for cp-automation-dp/emsbasic1-7366-xzhdg (run-test)" +2:24PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-7366-xzhdg\" is waiting to start: trying and failing to pull image for cp-automation-dp/emsbasic1-7366-xzhdg (run-test)" +2:24PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-7366-xzhdg\" is waiting to start: trying and failing to pull image for cp-automation-dp/emsbasic1-7366-xzhdg (run-test)" +2:24PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-7366-xzhdg\" is waiting to start: trying and failing to pull image for cp-automation-dp/emsbasic1-7366-xzhdg (run-test)" +2:24PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-7366-xzhdg\" is waiting to start: trying and failing to pull image for cp-automation-dp/emsbasic1-7366-xzhdg (run-test)" +2:25PM INF 🐶 K9s starting up... +2:25PM INF ✅ Kubernetes connectivity +2:25PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-22581-v7gxs\" is waiting to start: trying and failing to pull image for cp-automation-dp/emsbasic1-22581-v7gxs (run-test)" +2:25PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-22581-v7gxs\" is waiting to start: trying and failing to pull image for cp-automation-dp/emsbasic1-22581-v7gxs (run-test)" +2:25PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-22581-v7gxs\" is waiting to start: trying and failing to pull image for cp-automation-dp/emsbasic1-22581-v7gxs (run-test)" +2:25PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-22581-v7gxs\" is waiting to start: trying and failing to pull image for cp-automation-dp/emsbasic1-22581-v7gxs (run-test)" +2:25PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-22581-v7gxs\" is waiting to start: trying and failing to pull image for cp-automation-dp/emsbasic1-22581-v7gxs (run-test)" +2:25PM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for cp-automation-dp/emsbasic1-22581-v7gxs (run-test)" +2:26PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-28226-m8tp6\" is waiting to start: trying and failing to pull image for cp-automation-dp/emsbasic1-28226-m8tp6 (run-test)" +2:26PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-28226-m8tp6\" is waiting to start: trying and failing to pull image for cp-automation-dp/emsbasic1-28226-m8tp6 (run-test)" +2:26PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-28226-m8tp6\" is waiting to start: image can't be pulled for cp-automation-dp/emsbasic1-28226-m8tp6 (run-test)" +2:26PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-28226-m8tp6\" is waiting to start: image can't be pulled for cp-automation-dp/emsbasic1-28226-m8tp6 (run-test)" +2:27PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-28226-m8tp6\" is waiting to start: image can't be pulled for cp-automation-dp/emsbasic1-28226-m8tp6 (run-test)" +2:27PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-28226-m8tp6\" is waiting to start: image can't be pulled for cp-automation-dp/emsbasic1-28226-m8tp6 (run-test)" +2:27PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-28226-m8tp6\" is waiting to start: image can't be pulled for cp-automation-dp/emsbasic1-28226-m8tp6 (run-test)" +2:27PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-28226-m8tp6\" is waiting to start: image can't be pulled for cp-automation-dp/emsbasic1-28226-m8tp6 (run-test)" +2:27PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-28226-m8tp6\" is waiting to start: image can't be pulled for cp-automation-dp/emsbasic1-28226-m8tp6 (run-test)" +2:27PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-28226-m8tp6\" is waiting to start: image can't be pulled for cp-automation-dp/emsbasic1-28226-m8tp6 (run-test)" +2:27PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-28226-m8tp6\" is waiting to start: image can't be pulled for cp-automation-dp/emsbasic1-28226-m8tp6 (run-test)" +2:27PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-28226-m8tp6\" is waiting to start: image can't be pulled for cp-automation-dp/emsbasic1-28226-m8tp6 (run-test)" +2:27PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-28226-m8tp6\" is waiting to start: image can't be pulled for cp-automation-dp/emsbasic1-28226-m8tp6 (run-test)" +2:27PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-28226-m8tp6\" is waiting to start: image can't be pulled for cp-automation-dp/emsbasic1-28226-m8tp6 (run-test)" +2:27PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-28226-m8tp6\" is waiting to start: image can't be pulled for cp-automation-dp/emsbasic1-28226-m8tp6 (run-test)" +2:27PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-28226-m8tp6\" is waiting to start: image can't be pulled for cp-automation-dp/emsbasic1-28226-m8tp6 (run-test)" +2:27PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-28226-m8tp6\" is waiting to start: trying and failing to pull image for cp-automation-dp/emsbasic1-28226-m8tp6 (run-test)" +2:27PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-28226-m8tp6\" is waiting to start: trying and failing to pull image for cp-automation-dp/emsbasic1-28226-m8tp6 (run-test)" +2:27PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-28226-m8tp6\" is waiting to start: trying and failing to pull image for cp-automation-dp/emsbasic1-28226-m8tp6 (run-test)" +2:27PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-28226-m8tp6\" is waiting to start: trying and failing to pull image for cp-automation-dp/emsbasic1-28226-m8tp6 (run-test)" +2:32PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +2:32PM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:32PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsbasic1-28226-m8tp6\": ACCESS -- No API server connection" +2:32PM WRN reconciler exited error="context canceled" +2:33PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsbasic1-28226-m8tp6\": pods \"emsbasic1-28226-m8tp6\" not found" +2:33PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsbasic1-28226-m8tp6\": pods \"emsbasic1-28226-m8tp6\" not found" +2:33PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsbasic1-28226-m8tp6\": pods \"emsbasic1-28226-m8tp6\" not found" +2:33PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsbasic1-28226-m8tp6\": pods \"emsbasic1-28226-m8tp6\" not found" +2:33PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsbasic1-28226-m8tp6\": pods \"emsbasic1-28226-m8tp6\" not found" +2:33PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsbasic1-28226-m8tp6\": pods \"emsbasic1-28226-m8tp6\" not found" +2:33PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsbasic1-28226-m8tp6\": pods \"emsbasic1-28226-m8tp6\" not found" +2:34PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsbasic1-28226-m8tp6\": pods \"emsbasic1-28226-m8tp6\" not found" +2:34PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsbasic1-28226-m8tp6\": pods \"emsbasic1-28226-m8tp6\" not found" +2:34PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsbasic1-28226-m8tp6\": pods \"emsbasic1-28226-m8tp6\" not found" +2:34PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsbasic1-28226-m8tp6\": pods \"emsbasic1-28226-m8tp6\" not found" +2:35PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsbasic1-28226-m8tp6\": pods \"emsbasic1-28226-m8tp6\" not found" +2:37PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsbasic1-28226-m8tp6\": pods \"emsbasic1-28226-m8tp6\" not found" +2:38PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsbasic1-28226-m8tp6\": pods \"emsbasic1-28226-m8tp6\" not found" +2:38PM WRN reconciler exited error="failed to locate pod \"cp-automation-dp/emsbasic1-28226-m8tp6\": pods \"emsbasic1-28226-m8tp6\" not found" +2:38PM ERR failed to locate pod "cp-automation-dp/emsbasic1-28226-m8tp6": pods "emsbasic1-28226-m8tp6" not found +2:38PM ERR Tail logs failed error="pods \"emsbasic1-28226-m8tp6\" not found" +2:38PM INF 🐶 K9s starting up... +2:38PM INF ✅ Kubernetes connectivity +2:39PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-26816-dl477\" is waiting to start: trying and failing to pull image for cp-automation-dp/emsbasic1-26816-dl477 (run-test)" +2:39PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-26816-dl477\" is waiting to start: trying and failing to pull image for cp-automation-dp/emsbasic1-26816-dl477 (run-test)" +2:39PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-26816-dl477\" is waiting to start: trying and failing to pull image for cp-automation-dp/emsbasic1-26816-dl477 (run-test)" +2:39PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-26816-dl477\" is waiting to start: trying and failing to pull image for cp-automation-dp/emsbasic1-26816-dl477 (run-test)" +2:39PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-26816-dl477\" is waiting to start: trying and failing to pull image for cp-automation-dp/emsbasic1-26816-dl477 (run-test)" +2:39PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-26816-dl477\" is waiting to start: trying and failing to pull image for cp-automation-dp/emsbasic1-26816-dl477 (run-test)" +2:39PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-26816-dl477\" is waiting to start: trying and failing to pull image for cp-automation-dp/emsbasic1-26816-dl477 (run-test)" +2:39PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-26816-dl477\" is waiting to start: trying and failing to pull image for cp-automation-dp/emsbasic1-26816-dl477 (run-test)" +2:39PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-26816-dl477\" is waiting to start: image can't be pulled for cp-automation-dp/emsbasic1-26816-dl477 (run-test)" +2:39PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-26816-dl477\" is waiting to start: image can't be pulled for cp-automation-dp/emsbasic1-26816-dl477 (run-test)" +2:39PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-26816-dl477\" is waiting to start: image can't be pulled for cp-automation-dp/emsbasic1-26816-dl477 (run-test)" +2:40PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-26816-dl477\" is waiting to start: image can't be pulled for cp-automation-dp/emsbasic1-26816-dl477 (run-test)" +2:40PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-26816-dl477\" is waiting to start: image can't be pulled for cp-automation-dp/emsbasic1-26816-dl477 (run-test)" +2:40PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-26816-dl477\" is waiting to start: image can't be pulled for cp-automation-dp/emsbasic1-26816-dl477 (run-test)" +2:40PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-26816-dl477\" is waiting to start: image can't be pulled for cp-automation-dp/emsbasic1-26816-dl477 (run-test)" +2:40PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-26816-dl477\" is waiting to start: image can't be pulled for cp-automation-dp/emsbasic1-26816-dl477 (run-test)" +2:40PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-26816-dl477\" is waiting to start: image can't be pulled for cp-automation-dp/emsbasic1-26816-dl477 (run-test)" +2:40PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-26816-dl477\" is waiting to start: image can't be pulled for cp-automation-dp/emsbasic1-26816-dl477 (run-test)" +2:40PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-26816-dl477\" is waiting to start: image can't be pulled for cp-automation-dp/emsbasic1-26816-dl477 (run-test)" +2:40PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsbasic1-26816-dl477\" is waiting to start: image can't be pulled for cp-automation-dp/emsbasic1-26816-dl477 (run-test)" +2:42PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsbasic1-26816-dl477\": pods \"emsbasic1-26816-dl477\" not found" +2:42PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsbasic1-26816-dl477\": pods \"emsbasic1-26816-dl477\" not found" +2:42PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsbasic1-26816-dl477\": pods \"emsbasic1-26816-dl477\" not found" +2:42PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsbasic1-26816-dl477\": pods \"emsbasic1-26816-dl477\" not found" +2:42PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsbasic1-26816-dl477\": pods \"emsbasic1-26816-dl477\" not found" +2:42PM WRN reconciler exited error="context canceled" +2:43PM INF 🐶 K9s starting up... +2:43PM INF ✅ Kubernetes connectivity +2:47PM INF 🐶 K9s starting up... +2:47PM INF ✅ Kubernetes connectivity +3:19PM INF 🐶 K9s starting up... +3:19PM INF ✅ Kubernetes connectivity +3:26PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +3:26PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:27PM ERR reconcile failed "v1/pods" error="pods \"emsuibht-21400-8h479\" not found" +3:27PM ERR refresh failed error="pods \"emsuibht-21400-8h479\" not found" +3:28PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +3:28PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:37PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +3:37PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:37PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +3:37PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:37PM ERR reconcile failed "v1/pods" error="pods \"emsuibht-21400-8h479\" not found" +3:37PM ERR refresh failed error="pods \"emsuibht-21400-8h479\" not found" +3:44PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +3:44PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:44PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +3:44PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:44PM ERR reconcile failed "v1/pods" error="pods \"emsuibht-21400-8h479\" not found" +3:44PM ERR refresh failed error="pods \"emsuibht-21400-8h479\" not found" +3:48PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +3:48PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:48PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +3:48PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:49PM ERR reconcile failed "v1/pods" error="pods \"emsuibht-21400-8h479\" not found" +3:49PM ERR refresh failed error="pods \"emsuibht-21400-8h479\" not found" +3:54PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +3:54PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:54PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +3:54PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:55PM ERR reconcile failed "v1/pods" error="pods \"emsuibht-21400-8h479\" not found" +3:55PM ERR refresh failed error="pods \"emsuibht-21400-8h479\" not found" +4:03PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +4:03PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:03PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +4:03PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:04PM ERR reconcile failed "v1/pods" error="pods \"emsuibht-21400-8h479\" not found" +4:04PM ERR refresh failed error="pods \"emsuibht-21400-8h479\" not found" +6:53PM WRN  Dial Failed! error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": read tcp 10.123.230.38:59972->10.97.130.64:443: read: connection reset by peer" +6:53PM ERR refresh failed for gvr: v1/pods error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": read tcp 10.123.230.38:59972->10.97.130.64:443: read: connection reset by peer" +6:53PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +6:53PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +6:53PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +6:53PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +6:53PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +6:53PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +6:53PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +6:53PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +6:53PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +6:53PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +6:54PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +6:54PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +6:55PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +6:55PM WRN reconciler exited error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +6:55PM ERR [list] access denied on resource "cp-automation-dp":"v1/pods" +11:55PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +11:55PM ERR ClusterUpdater failed error="conn check failed (1/5)" +11:55PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +11:55PM ERR ClusterUpdater failed error="conn check failed (1/5)" +11:55PM ERR reconcile failed "v1/pods" error="pods \"emsuibht-21400-8h479\" not found" +11:55PM ERR refresh failed error="pods \"emsuibht-21400-8h479\" not found" +1:56AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +1:56AM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:57AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +4:57AM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:57AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +4:57AM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:57AM ERR reconcile failed "v1/pods" error="pods \"emsuibht-21400-8h479\" not found" +4:57AM ERR refresh failed error="pods \"emsuibht-21400-8h479\" not found" +5:58AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +5:58AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +5:58AM ERR ClusterUpdater failed error="conn check failed (1/5)" +5:58AM ERR ClusterUpdater failed error="conn check failed (1/5)" +5:58AM ERR reconcile failed "v1/pods" error="pods \"emsuibht-21400-8h479\" not found" +5:58AM ERR refresh failed error="pods \"emsuibht-21400-8h479\" not found" +6:59AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +6:59AM ERR ClusterUpdater failed error="conn check failed (1/5)" +6:59AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +6:59AM ERR ClusterUpdater failed error="conn check failed (1/5)" +7:00AM ERR reconcile failed "v1/pods" error="pods \"emsuibht-21400-8h479\" not found" +7:00AM ERR refresh failed error="pods \"emsuibht-21400-8h479\" not found" +9:52AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +9:52AM ERR ClusterUpdater failed error="conn check failed (1/5)" +9:52AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +9:52AM ERR ClusterUpdater failed error="conn check failed (1/5)" +9:52AM ERR reconcile failed "v1/pods" error="pods \"emsuibht-21400-8h479\" not found" +9:52AM ERR refresh failed error="pods \"emsuibht-21400-8h479\" not found" +11:01AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +11:01AM ERR ClusterUpdater failed error="conn check failed (1/5)" +1:17PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +1:17PM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:15PM WRN log-reader EOF error="stream closed EOF for cp-automation-dp/emsuibht-16048-wmksd (run-test)" +2:15PM ERR Command failed error="exit status 1" +2:15PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-16048-wmksd -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +2:15PM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +2:15PM ERR Command failed error="exit status 1" +2:15PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-16048-wmksd -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +2:15PM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +2:15PM WRN log-reader EOF error="stream closed EOF for cp-automation-dp/emsuibht-16048-wmksd (run-test)" +2:17PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-16048-wmksd\": pods \"emsuibht-16048-wmksd\" not found" +2:17PM ERR Watcher failed for containers -- failed to locate pod "cp-automation-dp/emsuibht-16048-wmksd": pods "emsuibht-16048-wmksd" not found error="failed to locate pod \"cp-automation-dp/emsuibht-16048-wmksd\": pods \"emsuibht-16048-wmksd\" not found" +2:18PM WRN log-reader EOF error="stream closed EOF for cp-automation-dp/emsuibht-3061-l8wmr (run-test)" +2:26PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-3061-l8wmr\": pods \"emsuibht-3061-l8wmr\" not found" +2:26PM ERR Watcher failed for containers -- failed to locate pod "cp-automation-dp/emsuibht-3061-l8wmr": pods "emsuibht-3061-l8wmr" not found error="failed to locate pod \"cp-automation-dp/emsuibht-3061-l8wmr\": pods \"emsuibht-3061-l8wmr\" not found" +2:27PM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/emsuibht-7331-q2x55 (run-test)" +2:27PM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/emsuibht-7331-q2x55 (run-test)" +2:48PM INF 🐶 K9s starting up... +2:48PM INF ✅ Kubernetes connectivity +2:49PM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/emsuibht-25380-bgvrr (run-test)" +2:49PM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/emsuibht-25380-bgvrr (run-test)" +3:02PM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/emsuibht-2429-nxq5c (run-test)" +3:03PM ERR Command failed error="exit status 130" +3:03PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-2429-nxq5c -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +3:03PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +3:19PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +3:19PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:32PM ERR Command failed error="exit status 137" +3:32PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-14545-kzn5l -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:32PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +5:39PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +5:39PM ERR ClusterUpdater failed error="conn check failed (1/5)" +5:39PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +5:39PM ERR ClusterUpdater failed error="conn check failed (2/5)" +6:04PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)" +6:04PM ERR ClusterUpdater failed error="conn check failed (3/5)" +6:04PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +6:04PM ERR ClusterUpdater failed error="conn check failed (4/5)" +6:04PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +6:04PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +10:46AM INF 🐶 K9s starting up... +10:46AM INF ✅ Kubernetes connectivity +10:52AM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/emsuibht-2667-k2j8s (run-test)" +10:52AM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/emsuibht-2667-k2j8s (run-test)" +10:52AM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/emsuibht-2667-k2j8s (run-test)" +11:13AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-4711-4ft7x\" is waiting to start: ContainerCreating for cp-automation-dp/emsuibht-4711-4ft7x (run-test)" +11:13AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-4711-4ft7x\" is waiting to start: ContainerCreating for cp-automation-dp/emsuibht-4711-4ft7x (run-test)" +11:13AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-4711-4ft7x\" is waiting to start: ContainerCreating for cp-automation-dp/emsuibht-4711-4ft7x (run-test)" +11:13AM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for cp-automation-dp/emsuibht-4711-4ft7x (run-test)" +11:16AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +11:16AM ERR ClusterUpdater failed error="conn check failed (1/5)" +11:16AM ERR logs-stream error="stream logs failed Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/api/v1/namespaces/cp-automation-dp/pods/emsuibht-4711-4ft7x/log?container=run-test&follow=true&tailLines=100×tamps=true\": context canceled for cp-automation-dp/emsuibht-4711-4ft7x (run-test)" +11:16AM WRN Unable to dial discovery API error="no connection to dial" +11:16AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-4711-4ft7x\": ACCESS -- No API server connection" +11:16AM ERR Watcher failed for containers -- failed to locate pod "cp-automation-dp/emsuibht-4711-4ft7x": ACCESS -- No API server connection error="failed to locate pod \"cp-automation-dp/emsuibht-4711-4ft7x\": ACCESS -- No API server connection" +11:16AM ERR refresh failed for gvr: v1/pods error="ACCESS -- No API server connection" +11:16AM ERR Watcher failed for v1/pods -- ACCESS -- No API server connection error="ACCESS -- No API server connection" +11:16AM ERR refresh failed for gvr: batch/v1/jobs error="ACCESS -- No API server connection" +11:16AM ERR Watcher failed for batch/v1/jobs -- ACCESS -- No API server connection error="ACCESS -- No API server connection" +11:16AM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +11:16AM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +11:16AM INF 🐶 K9s starting up... +11:16AM INF ✅ Kubernetes connectivity +11:16AM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/emsuibht-4711-4ft7x (run-test)" +11:18AM ERR Command failed error="exit status 137" +11:18AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-4711-4ft7x -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +11:18AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +11:21AM ERR Command failed error="exit status 130" +11:21AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-16373-hn2hj -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +11:21AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +11:26AM ERR Command failed error="exit status 1" +11:26AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-19827-d8kcq -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +11:26AM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +11:35AM ERR Command failed error="exit status 130" +11:35AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-1977-kc7vh -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +11:35AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +11:38AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-7519-z5cp9\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-7519-z5cp9 (run-test)" +11:38AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-7519-z5cp9\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-7519-z5cp9 (run-test)" +11:38AM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for cp-automation-dp/emsuibht-7519-z5cp9 (run-test)" +11:38AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-7519-z5cp9\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-7519-z5cp9 (run-test)" +11:38AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-7519-z5cp9\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-7519-z5cp9 (run-test)" +11:38AM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for cp-automation-dp/emsuibht-7519-z5cp9 (run-test)" +11:38AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-7519-z5cp9\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-7519-z5cp9 (run-test)" +11:38AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-7519-z5cp9\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-7519-z5cp9 (run-test)" +11:38AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-7519-z5cp9\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-7519-z5cp9 (run-test)" +11:38AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-7519-z5cp9\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-7519-z5cp9 (run-test)" +11:38AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-7519-z5cp9\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-7519-z5cp9 (run-test)" +11:38AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-7519-z5cp9\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-7519-z5cp9 (run-test)" +11:38AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-7519-z5cp9\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-7519-z5cp9 (run-test)" +11:38AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-7519-z5cp9\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-7519-z5cp9 (run-test)" +11:38AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-7519-z5cp9\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-7519-z5cp9 (run-test)" +11:38AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-7519-z5cp9\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-7519-z5cp9 (run-test)" +11:38AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-7519-z5cp9\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-7519-z5cp9 (run-test)" +11:38AM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for cp-automation-dp/emsuibht-7519-z5cp9 (run-test)" +11:39AM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-one-uninstall-uh5n" +11:39AM WRN Deleted (0) portforward for "cp-automation-dp/ems-test-uninstall-iug5" +11:41AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-2554-tqbgr\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-2554-tqbgr (run-test)" +11:41AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-2554-tqbgr\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-2554-tqbgr (run-test)" +11:41AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-2554-tqbgr\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-2554-tqbgr (run-test)" +11:41AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-2554-tqbgr\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-2554-tqbgr (run-test)" +11:41AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-2554-tqbgr\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-2554-tqbgr (run-test)" +11:41AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-2554-tqbgr\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-2554-tqbgr (run-test)" +11:41AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-2554-tqbgr\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-2554-tqbgr (run-test)" +11:41AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-2554-tqbgr\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-2554-tqbgr (run-test)" +11:41AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-2554-tqbgr\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-2554-tqbgr (run-test)" +11:41AM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for cp-automation-dp/emsuibht-2554-tqbgr (run-test)" +11:41AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-2554-tqbgr\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-2554-tqbgr (run-test)" +11:41AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-2554-tqbgr\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-2554-tqbgr (run-test)" +11:41AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-2554-tqbgr\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-2554-tqbgr (run-test)" +11:41AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-2554-tqbgr\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-2554-tqbgr (run-test)" +11:41AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-2554-tqbgr\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-2554-tqbgr (run-test)" +11:41AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-2554-tqbgr\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-2554-tqbgr (run-test)" +11:41AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-2554-tqbgr\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-2554-tqbgr (run-test)" +11:41AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-2554-tqbgr\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-2554-tqbgr (run-test)" +11:41AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-2554-tqbgr\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-2554-tqbgr (run-test)" +11:41AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-2554-tqbgr\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-2554-tqbgr (run-test)" +11:41AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-2554-tqbgr\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-2554-tqbgr (run-test)" +11:41AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-2554-tqbgr\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-2554-tqbgr (run-test)" +11:41AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-2554-tqbgr\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-2554-tqbgr (run-test)" +11:41AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-2554-tqbgr\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-2554-tqbgr (run-test)" +11:41AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-2554-tqbgr\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-2554-tqbgr (run-test)" +11:41AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-2554-tqbgr\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-2554-tqbgr (run-test)" +11:41AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-2554-tqbgr\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-2554-tqbgr (run-test)" +11:41AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-2554-tqbgr\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-2554-tqbgr (run-test)" +11:41AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-2554-tqbgr\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-2554-tqbgr (run-test)" +11:41AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-2554-tqbgr\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-2554-tqbgr (run-test)" +11:48AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-21742-zqm9p\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-21742-zqm9p (run-test)" +11:48AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-21742-zqm9p\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-21742-zqm9p (run-test)" +11:48AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-21742-zqm9p\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-21742-zqm9p (run-test)" +11:48AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-21742-zqm9p\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-21742-zqm9p (run-test)" +11:48AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-21742-zqm9p\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-21742-zqm9p (run-test)" +11:48AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-21742-zqm9p\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-21742-zqm9p (run-test)" +11:48AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-21742-zqm9p\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-21742-zqm9p (run-test)" +11:48AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-21742-zqm9p\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-21742-zqm9p (run-test)" +11:48AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-21742-zqm9p\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-21742-zqm9p (run-test)" +11:48AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-21742-zqm9p\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-21742-zqm9p (run-test)" +11:48AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-21742-zqm9p\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-21742-zqm9p (run-test)" +11:48AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-21742-zqm9p\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-21742-zqm9p (run-test)" +11:48AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-21742-zqm9p\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-21742-zqm9p (run-test)" +11:48AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-21742-zqm9p\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-21742-zqm9p (run-test)" +11:48AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-21742-zqm9p\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-21742-zqm9p (run-test)" +11:48AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-21742-zqm9p\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-21742-zqm9p (run-test)" +11:48AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-21742-zqm9p\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-21742-zqm9p (run-test)" +11:48AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-21742-zqm9p\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-21742-zqm9p (run-test)" +11:48AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-21742-zqm9p\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-21742-zqm9p (run-test)" +11:48AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-21742-zqm9p\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-21742-zqm9p (run-test)" +11:56AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-21742-zqm9p\": pods \"emsuibht-21742-zqm9p\" not found" +11:56AM ERR Watcher failed for containers -- failed to locate pod "cp-automation-dp/emsuibht-21742-zqm9p": pods "emsuibht-21742-zqm9p" not found error="failed to locate pod \"cp-automation-dp/emsuibht-21742-zqm9p\": pods \"emsuibht-21742-zqm9p\" not found" +11:58AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-10928-gsgr9\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-10928-gsgr9 (run-test)" +11:58AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-10928-gsgr9\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-10928-gsgr9 (run-test)" +11:58AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-10928-gsgr9\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-10928-gsgr9 (run-test)" +11:58AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-10928-gsgr9\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-10928-gsgr9 (run-test)" +11:58AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-10928-gsgr9\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-10928-gsgr9 (run-test)" +11:58AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-10928-gsgr9\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-10928-gsgr9 (run-test)" +11:58AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-10928-gsgr9\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-10928-gsgr9 (run-test)" +11:58AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-10928-gsgr9\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-10928-gsgr9 (run-test)" +11:58AM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for cp-automation-dp/emsuibht-10928-gsgr9 (run-test)" +11:58AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-10928-gsgr9\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-10928-gsgr9 (run-test)" +11:58AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-10928-gsgr9\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-10928-gsgr9 (run-test)" +11:58AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-10928-gsgr9\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-10928-gsgr9 (run-test)" +11:58AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-10928-gsgr9\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-10928-gsgr9 (run-test)" +11:58AM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for cp-automation-dp/emsuibht-10928-gsgr9 (run-test)" +12:04PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-10132-j2l75\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-10132-j2l75 (run-test)" +12:04PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-10132-j2l75\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-10132-j2l75 (run-test)" +12:04PM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for cp-automation-dp/emsuibht-10132-j2l75 (run-test)" +12:04PM ERR cp-automation-dp/emsuibht-10132-j2l75 is not in a running state +12:04PM ERR Command failed error="exit status 1" +12:04PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-10132-j2l75 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +12:04PM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +12:04PM ERR Command failed error="exit status 1" +12:04PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-10132-j2l75 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +12:04PM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +12:04PM ERR Command failed error="exit status 1" +12:04PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-10132-j2l75 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +12:04PM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +12:04PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-10132-j2l75\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-10132-j2l75 (run-test)" +12:04PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-10132-j2l75\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-10132-j2l75 (run-test)" +12:04PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-10132-j2l75\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-10132-j2l75 (run-test)" +12:04PM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for cp-automation-dp/emsuibht-10132-j2l75 (run-test)" +12:08PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-14318-nvvkm\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-14318-nvvkm (run-test)" +12:08PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-14318-nvvkm\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-14318-nvvkm (run-test)" +12:09PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-14318-nvvkm\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-14318-nvvkm (run-test)" +12:09PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-14318-nvvkm\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-14318-nvvkm (run-test)" +12:09PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-14318-nvvkm\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-14318-nvvkm (run-test)" +12:09PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-14318-nvvkm\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-14318-nvvkm (run-test)" +12:09PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-14318-nvvkm\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-14318-nvvkm (run-test)" +12:09PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-14318-nvvkm\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-14318-nvvkm (run-test)" +12:09PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-14318-nvvkm\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-14318-nvvkm (run-test)" +12:09PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-14318-nvvkm\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-14318-nvvkm (run-test)" +12:09PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-14318-nvvkm\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-14318-nvvkm (run-test)" +12:09PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-14318-nvvkm\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-14318-nvvkm (run-test)" +12:09PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-14318-nvvkm\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-14318-nvvkm (run-test)" +12:09PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-14318-nvvkm\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-14318-nvvkm (run-test)" +12:09PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-14318-nvvkm\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-14318-nvvkm (run-test)" +12:09PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-14318-nvvkm\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-14318-nvvkm (run-test)" +12:09PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-14318-nvvkm\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-14318-nvvkm (run-test)" +12:09PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-14318-nvvkm\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-14318-nvvkm (run-test)" +12:09PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-14318-nvvkm\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-14318-nvvkm (run-test)" +12:09PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-14318-nvvkm\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-14318-nvvkm (run-test)" +12:10PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-14318-nvvkm\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-14318-nvvkm (run-test)" +12:10PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-14318-nvvkm\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-14318-nvvkm (run-test)" +12:10PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-14318-nvvkm\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-14318-nvvkm (run-test)" +12:10PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-14318-nvvkm\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-14318-nvvkm (run-test)" +12:10PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-14318-nvvkm\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-14318-nvvkm (run-test)" +12:10PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-14318-nvvkm\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-14318-nvvkm (run-test)" +12:10PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-14318-nvvkm\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-14318-nvvkm (run-test)" +12:10PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-14318-nvvkm\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-14318-nvvkm (run-test)" +12:10PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-14318-nvvkm\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-14318-nvvkm (run-test)" +12:10PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-14318-nvvkm\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-14318-nvvkm (run-test)" +12:10PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-14318-nvvkm\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-14318-nvvkm (run-test)" +12:10PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-14318-nvvkm\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-14318-nvvkm (run-test)" +12:10PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-14318-nvvkm\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-14318-nvvkm (run-test)" +12:10PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-14318-nvvkm\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-14318-nvvkm (run-test)" +12:10PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-14318-nvvkm\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-14318-nvvkm (run-test)" +12:10PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-14318-nvvkm\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-14318-nvvkm (run-test)" +12:10PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-14318-nvvkm\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-14318-nvvkm (run-test)" +12:10PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-14318-nvvkm\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-14318-nvvkm (run-test)" +12:10PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-14318-nvvkm\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-14318-nvvkm (run-test)" +12:10PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-14318-nvvkm\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-14318-nvvkm (run-test)" +12:20PM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/emsuibht-29228-tz5qr (run-test)" +12:30PM INF 🐶 K9s starting up... +12:30PM INF ✅ Kubernetes connectivity +12:32PM ERR Command failed error="exit status 137" +12:32PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-29228-tz5qr -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +12:32PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +12:32PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-29228-tz5qr\": pods \"emsuibht-29228-tz5qr\" not found" +12:32PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-29228-tz5qr\": pods \"emsuibht-29228-tz5qr\" not found" +12:32PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-29228-tz5qr\": pods \"emsuibht-29228-tz5qr\" not found" +12:32PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-29228-tz5qr\": pods \"emsuibht-29228-tz5qr\" not found" +12:32PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-29228-tz5qr\": pods \"emsuibht-29228-tz5qr\" not found" +12:32PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-29228-tz5qr\": pods \"emsuibht-29228-tz5qr\" not found" +12:32PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-29228-tz5qr\": pods \"emsuibht-29228-tz5qr\" not found" +12:32PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-29228-tz5qr\": pods \"emsuibht-29228-tz5qr\" not found" +12:32PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-29228-tz5qr\": pods \"emsuibht-29228-tz5qr\" not found" +12:33PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-29228-tz5qr\": pods \"emsuibht-29228-tz5qr\" not found" +12:33PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-29228-tz5qr\": pods \"emsuibht-29228-tz5qr\" not found" +12:33PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-29228-tz5qr\": pods \"emsuibht-29228-tz5qr\" not found" +12:34PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-29228-tz5qr\": pods \"emsuibht-29228-tz5qr\" not found" +12:34PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-29228-tz5qr\": pods \"emsuibht-29228-tz5qr\" not found" +12:34PM WRN reconciler exited error="failed to locate pod \"cp-automation-dp/emsuibht-29228-tz5qr\": pods \"emsuibht-29228-tz5qr\" not found" +12:34PM ERR failed to locate pod "cp-automation-dp/emsuibht-29228-tz5qr": pods "emsuibht-29228-tz5qr" not found +12:37PM WRN Deleted (0) portforward for "cp-automation-dp/ems-test-preinstall-ku7t" +12:37PM WRN Deleted (0) portforward for "cp-automation-dp/ems-test-emsinit" +12:37PM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-one-uninstall-zpmw" +12:48PM ERR Command failed error="exit status 137" +12:48PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-17871-9t6vx -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +12:48PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +12:48PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-17871-9t6vx\": pods \"emsuibht-17871-9t6vx\" not found" +12:48PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-17871-9t6vx\": pods \"emsuibht-17871-9t6vx\" not found" +12:48PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-17871-9t6vx\": pods \"emsuibht-17871-9t6vx\" not found" +12:48PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-17871-9t6vx\": pods \"emsuibht-17871-9t6vx\" not found" +12:48PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-17871-9t6vx\": pods \"emsuibht-17871-9t6vx\" not found" +12:48PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-17871-9t6vx\": pods \"emsuibht-17871-9t6vx\" not found" +12:48PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-17871-9t6vx\": pods \"emsuibht-17871-9t6vx\" not found" +12:48PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-17871-9t6vx\": pods \"emsuibht-17871-9t6vx\" not found" +12:48PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-17871-9t6vx\": pods \"emsuibht-17871-9t6vx\" not found" +12:49PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-17871-9t6vx\": pods \"emsuibht-17871-9t6vx\" not found" +12:49PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-17871-9t6vx\": pods \"emsuibht-17871-9t6vx\" not found" +12:49PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-17871-9t6vx\": pods \"emsuibht-17871-9t6vx\" not found" +12:49PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-17871-9t6vx\": pods \"emsuibht-17871-9t6vx\" not found" +12:50PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-17871-9t6vx\": pods \"emsuibht-17871-9t6vx\" not found" +12:50PM WRN reconciler exited error="failed to locate pod \"cp-automation-dp/emsuibht-17871-9t6vx\": pods \"emsuibht-17871-9t6vx\" not found" +12:50PM ERR failed to locate pod "cp-automation-dp/emsuibht-17871-9t6vx": pods "emsuibht-17871-9t6vx" not found +12:57PM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-one-uninstall-cfgz" +12:58PM ERR cp-automation-dp/emsuibht-11575-plxqk is not in a running state +1:00PM ERR Command failed error="exit status 137" +1:00PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-11575-plxqk -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:00PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:45PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +1:45PM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:52PM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-one-uninstall-0wuf" +2:55PM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/emsuibht-3797-z65mn (run-test)" +3:04PM ERR Command failed error="exit status 137" +3:04PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-3797-z65mn -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:04PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:04PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-3797-z65mn\": pods \"emsuibht-3797-z65mn\" not found" +3:04PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-3797-z65mn\": pods \"emsuibht-3797-z65mn\" not found" +3:04PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-3797-z65mn\": pods \"emsuibht-3797-z65mn\" not found" +3:04PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-3797-z65mn\": pods \"emsuibht-3797-z65mn\" not found" +3:04PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-3797-z65mn\": pods \"emsuibht-3797-z65mn\" not found" +3:04PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-3797-z65mn\": pods \"emsuibht-3797-z65mn\" not found" +3:04PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-3797-z65mn\": pods \"emsuibht-3797-z65mn\" not found" +3:04PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-3797-z65mn\": pods \"emsuibht-3797-z65mn\" not found" +3:04PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-3797-z65mn\": pods \"emsuibht-3797-z65mn\" not found" +3:04PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-3797-z65mn\": pods \"emsuibht-3797-z65mn\" not found" +3:04PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-3797-z65mn\": pods \"emsuibht-3797-z65mn\" not found" +3:05PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-3797-z65mn\": pods \"emsuibht-3797-z65mn\" not found" +3:05PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-3797-z65mn\": pods \"emsuibht-3797-z65mn\" not found" +3:05PM WRN reconciler exited error="failed to locate pod \"cp-automation-dp/emsuibht-3797-z65mn\": pods \"emsuibht-3797-z65mn\" not found" +3:05PM ERR failed to locate pod "cp-automation-dp/emsuibht-3797-z65mn": pods "emsuibht-3797-z65mn" not found +3:28PM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-one-uninstall-wdvx" +3:28PM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-one-uninstall-dnzc" +3:28PM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-one-uninstall-rqrh" +3:34PM ERR Command failed error="exit status 137" +3:34PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-1396-ttd9l -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:34PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:37PM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/emsuibht-17996-d6zr2 (run-test)" +3:40PM ERR Command failed error="exit status 137" +3:40PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-17996-d6zr2 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:40PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:40PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-17996-d6zr2\": pods \"emsuibht-17996-d6zr2\" not found" +3:40PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-17996-d6zr2\": pods \"emsuibht-17996-d6zr2\" not found" +3:40PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-17996-d6zr2\": pods \"emsuibht-17996-d6zr2\" not found" +3:40PM WRN reconciler exited error="context canceled" +3:58PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded (Client.Timeout exceeded while awaiting headers)" +3:58PM ERR ClusterUpdater failed error="conn check failed (1/5)" +5:22PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": read tcp 10.123.230.38:53413->10.97.130.64:443: read: operation timed out" +5:22PM ERR ClusterUpdater failed error="conn check failed (1/5)" +6:00PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: operation timed out" +6:00PM ERR ClusterUpdater failed error="conn check failed (2/5)" +8:02PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: operation timed out" +8:02PM ERR ClusterUpdater failed error="conn check failed (3/5)" +11:06PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: operation timed out" +11:06PM ERR ClusterUpdater failed error="conn check failed (4/5)" +11:06PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +11:06PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +9:22AM INF 🐶 K9s starting up... +9:22AM INF ✅ Kubernetes connectivity +10:22AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +10:22AM ERR ClusterUpdater failed error="conn check failed (1/5)" +11:31AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +11:31AM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:05PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +2:05PM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:09PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +2:09PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:15PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +3:15PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:44PM ERR Command failed error="exit status 137" +3:44PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-10333-spg8d -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:44PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:49PM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-random-uninstall-jwch" +3:49PM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-omt3ztef-uninstall-jvoz" +3:49PM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-ta1mzk6b-uninstall-b5bx" +3:49PM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-fenmnice-uninstall-2lay" +3:49PM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-ajyqh4w9-uninstall-ck5d" +3:49PM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-one-uninstall-9mhu" +3:49PM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-ofif0ffx-uninstall-m5rd" +3:49PM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-4n35o2sf-uninstall-mw43" +3:49PM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-one-uninstall-wefb" +5:56PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": read tcp 10.123.230.38:56781->10.97.130.64:443: read: operation timed out" +5:56PM ERR ClusterUpdater failed error="conn check failed (1/5)" +6:11PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: operation timed out" +6:11PM ERR ClusterUpdater failed error="conn check failed (2/5)" +6:14PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +6:14PM ERR ClusterUpdater failed error="conn check failed (3/5)" +6:14PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +6:14PM ERR ClusterUpdater failed error="conn check failed (4/5)" +6:14PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +6:14PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +11:16AM INF 🐶 K9s starting up... +11:16AM INF ✅ Kubernetes connectivity +11:17AM INF 🐶 K9s starting up... +11:17AM INF ✅ Kubernetes connectivity +11:17AM ERR Command failed error="exit status 1" +11:17AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuitopicsover-25268-qgrjc -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +11:17AM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +11:17AM ERR cp-automation-dp/emsuitopicsover-25268-qgrjc is not in a running state +11:17AM WRN log-reader EOF error="stream closed EOF for cp-automation-dp/emsuitopicsover-25268-qgrjc (run-test)" +11:18AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-25268-qgrjc\": pods \"emsuitopicsover-25268-qgrjc\" not found" +11:18AM ERR Watcher failed for containers -- failed to locate pod "cp-automation-dp/emsuitopicsover-25268-qgrjc": pods "emsuitopicsover-25268-qgrjc" not found error="failed to locate pod \"cp-automation-dp/emsuitopicsover-25268-qgrjc\": pods \"emsuitopicsover-25268-qgrjc\" not found" +11:18AM WRN os detect failed error="pods \"emsuitopicsover-25268-qgrjc\" not found" +11:18AM ERR Command failed error="exit status 1" +11:18AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuitopicsover-25268-qgrjc -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +11:18AM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +11:18AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-25268-qgrjc\": pods \"emsuitopicsover-25268-qgrjc\" not found" +11:18AM ERR Watcher failed for containers -- failed to locate pod "cp-automation-dp/emsuitopicsover-25268-qgrjc": pods "emsuitopicsover-25268-qgrjc" not found error="failed to locate pod \"cp-automation-dp/emsuitopicsover-25268-qgrjc\": pods \"emsuitopicsover-25268-qgrjc\" not found" +11:18AM WRN log-reader EOF error="stream closed EOF for cp-automation-dp/cp-auto-ems-one-uninstall-qeak-x7ngj (main)" +11:20AM ERR Command failed error="exit status 137" +11:20AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-27311-rkc4x -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +11:20AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +11:34AM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/emsuitopicsover-22806-nfjgd (run-test)" +11:34AM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/emsuibht-26053-vgfl5 (run-test)" +11:38AM ERR Command failed error="exit status 130" +11:38AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuitopicsover-22806-nfjgd -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +11:38AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +11:38AM ERR Command failed error="exit status 130" +11:38AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-26053-vgfl5 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +11:38AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +11:45AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +11:45AM ERR ClusterUpdater failed error="conn check failed (1/5)" +11:53AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +11:53AM ERR ClusterUpdater failed error="conn check failed (1/5)" +11:57AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +11:57AM ERR ClusterUpdater failed error="conn check failed (1/5)" +11:57AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +11:57AM ERR ClusterUpdater failed error="conn check failed (1/5)" +12:00PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +12:00PM ERR ClusterUpdater failed error="conn check failed (1/5)" +12:01PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +12:01PM ERR ClusterUpdater failed error="conn check failed (1/5)" +12:08PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +12:08PM ERR ClusterUpdater failed error="conn check failed (1/5)" +12:08PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +12:08PM ERR ClusterUpdater failed error="conn check failed (1/5)" +12:35PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +12:35PM ERR ClusterUpdater failed error="conn check failed (1/5)" +12:35PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +12:35PM ERR ClusterUpdater failed error="conn check failed (1/5)" +12:40PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +12:40PM ERR ClusterUpdater failed error="conn check failed (1/5)" +12:40PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +12:40PM ERR ClusterUpdater failed error="conn check failed (1/5)" +12:53PM ERR Command failed error="exit status 137" +12:53PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-7790-m6vrq -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +12:53PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +12:53PM ERR Command failed error="exit status 130" +12:53PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuitopicsover-27010-6q2rh -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +12:53PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +12:53PM WRN Deleted (0) portforward for "cp-automation-dp/emsuitopicsover-27010-6q2rh" +12:54PM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-one-uninstall-wztm" +12:54PM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-one-uninstall-mhuz" +12:54PM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-one-uninstall-qeak" +1:02PM ERR Command failed error="exit status 137" +1:02PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuitopicsover-5076-zg565 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:02PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:02PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-5076-zg565\": pods \"emsuitopicsover-5076-zg565\" not found" +1:02PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-5076-zg565\": pods \"emsuitopicsover-5076-zg565\" not found" +1:02PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-5076-zg565\": pods \"emsuitopicsover-5076-zg565\" not found" +1:02PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-5076-zg565\": pods \"emsuitopicsover-5076-zg565\" not found" +1:02PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-5076-zg565\": pods \"emsuitopicsover-5076-zg565\" not found" +1:02PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-5076-zg565\": pods \"emsuitopicsover-5076-zg565\" not found" +1:03PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-5076-zg565\": pods \"emsuitopicsover-5076-zg565\" not found" +1:03PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-5076-zg565\": pods \"emsuitopicsover-5076-zg565\" not found" +1:03PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-5076-zg565\": pods \"emsuitopicsover-5076-zg565\" not found" +1:03PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-5076-zg565\": pods \"emsuitopicsover-5076-zg565\" not found" +1:03PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-5076-zg565\": pods \"emsuitopicsover-5076-zg565\" not found" +1:03PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-5076-zg565\": pods \"emsuitopicsover-5076-zg565\" not found" +1:04PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-5076-zg565\": pods \"emsuitopicsover-5076-zg565\" not found" +1:04PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-5076-zg565\": pods \"emsuitopicsover-5076-zg565\" not found" +1:04PM WRN reconciler exited error="failed to locate pod \"cp-automation-dp/emsuitopicsover-5076-zg565\": pods \"emsuitopicsover-5076-zg565\" not found" +1:04PM ERR failed to locate pod "cp-automation-dp/emsuitopicsover-5076-zg565": pods "emsuitopicsover-5076-zg565" not found +1:12PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +1:12PM ERR ClusterUpdater failed error="conn check failed (1/5)" +1:12PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-5076-zg565\": pods \"emsuitopicsover-5076-zg565\" not found" +1:12PM ERR Watcher failed for containers -- failed to locate pod "cp-automation-dp/emsuitopicsover-5076-zg565": pods "emsuitopicsover-5076-zg565" not found error="failed to locate pod \"cp-automation-dp/emsuitopicsover-5076-zg565\": pods \"emsuitopicsover-5076-zg565\" not found" +1:16PM ERR Command failed error="exit status 130" +1:16PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuitopicsover-7986-bl4cb -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:16PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:17PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-7986-bl4cb\": pods \"emsuitopicsover-7986-bl4cb\" not found" +1:17PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-7986-bl4cb\": pods \"emsuitopicsover-7986-bl4cb\" not found" +1:17PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-7986-bl4cb\": pods \"emsuitopicsover-7986-bl4cb\" not found" +1:17PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-7986-bl4cb\": pods \"emsuitopicsover-7986-bl4cb\" not found" +1:17PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-7986-bl4cb\": pods \"emsuitopicsover-7986-bl4cb\" not found" +1:17PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-7986-bl4cb\": pods \"emsuitopicsover-7986-bl4cb\" not found" +1:17PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-7986-bl4cb\": pods \"emsuitopicsover-7986-bl4cb\" not found" +1:17PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-7986-bl4cb\": pods \"emsuitopicsover-7986-bl4cb\" not found" +1:17PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-7986-bl4cb\": pods \"emsuitopicsover-7986-bl4cb\" not found" +1:17PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-7986-bl4cb\": pods \"emsuitopicsover-7986-bl4cb\" not found" +1:17PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-7986-bl4cb\": pods \"emsuitopicsover-7986-bl4cb\" not found" +1:17PM WRN reconciler exited error="context canceled" +1:19PM ERR Command failed error="exit status 137" +1:19PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuitopicsover-19533-8x7vk -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:19PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:19PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-19533-8x7vk\": pods \"emsuitopicsover-19533-8x7vk\" not found" +1:19PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-19533-8x7vk\": pods \"emsuitopicsover-19533-8x7vk\" not found" +1:19PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-19533-8x7vk\": pods \"emsuitopicsover-19533-8x7vk\" not found" +1:19PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-19533-8x7vk\": pods \"emsuitopicsover-19533-8x7vk\" not found" +1:19PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-19533-8x7vk\": pods \"emsuitopicsover-19533-8x7vk\" not found" +1:19PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-19533-8x7vk\": pods \"emsuitopicsover-19533-8x7vk\" not found" +1:19PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-19533-8x7vk\": pods \"emsuitopicsover-19533-8x7vk\" not found" +1:19PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-19533-8x7vk\": pods \"emsuitopicsover-19533-8x7vk\" not found" +1:19PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-19533-8x7vk\": pods \"emsuitopicsover-19533-8x7vk\" not found" +1:20PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-19533-8x7vk\": pods \"emsuitopicsover-19533-8x7vk\" not found" +1:20PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-19533-8x7vk\": pods \"emsuitopicsover-19533-8x7vk\" not found" +1:20PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-19533-8x7vk\": pods \"emsuitopicsover-19533-8x7vk\" not found" +1:20PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-19533-8x7vk\": pods \"emsuitopicsover-19533-8x7vk\" not found" +1:20PM WRN reconciler exited error="failed to locate pod \"cp-automation-dp/emsuitopicsover-19533-8x7vk\": pods \"emsuitopicsover-19533-8x7vk\" not found" +1:20PM ERR failed to locate pod "cp-automation-dp/emsuitopicsover-19533-8x7vk": pods "emsuitopicsover-19533-8x7vk" not found +1:25PM ERR cp-automation-dp/emsuitopicsover-32442-c59l7 is not in a running state +1:26PM ERR Command failed error="exit status 137" +1:26PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuitopicsover-32442-c59l7 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:26PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:30PM ERR cp-automation-dp/emsuitopicsover-6336-k4lq8 is not in a running state +1:33PM ERR Command failed error="exit status 137" +1:33PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuitopicsover-6336-k4lq8 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:33PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:40PM ERR Command failed error="exit status 137" +1:40PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuitopicsover-27854-7llgh -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:40PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:41PM INF 🐶 K9s starting up... +1:41PM INF ✅ Kubernetes connectivity +1:41PM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/emsuibht-12811-x6wxx (run-test)" +1:43PM ERR Command failed error="exit status 137" +1:43PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuitopicsover-593-gqgqr -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:43PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:45PM ERR Command failed error="exit status 137" +1:45PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-12811-x6wxx -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:45PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:45PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-12811-x6wxx\": pods \"emsuibht-12811-x6wxx\" not found" +1:45PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-12811-x6wxx\": pods \"emsuibht-12811-x6wxx\" not found" +1:45PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-12811-x6wxx\": pods \"emsuibht-12811-x6wxx\" not found" +1:45PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-12811-x6wxx\": pods \"emsuibht-12811-x6wxx\" not found" +1:45PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-12811-x6wxx\": pods \"emsuibht-12811-x6wxx\" not found" +1:45PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-12811-x6wxx\": pods \"emsuibht-12811-x6wxx\" not found" +1:45PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-12811-x6wxx\": pods \"emsuibht-12811-x6wxx\" not found" +1:45PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-12811-x6wxx\": pods \"emsuibht-12811-x6wxx\" not found" +1:45PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-12811-x6wxx\": pods \"emsuibht-12811-x6wxx\" not found" +1:45PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-12811-x6wxx\": pods \"emsuibht-12811-x6wxx\" not found" +1:46PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-12811-x6wxx\": pods \"emsuibht-12811-x6wxx\" not found" +1:46PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-12811-x6wxx\": pods \"emsuibht-12811-x6wxx\" not found" +1:46PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-12811-x6wxx\": pods \"emsuibht-12811-x6wxx\" not found" +1:47PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-12811-x6wxx\": pods \"emsuibht-12811-x6wxx\" not found" +1:47PM WRN reconciler exited error="failed to locate pod \"cp-automation-dp/emsuibht-12811-x6wxx\": pods \"emsuibht-12811-x6wxx\" not found" +1:47PM ERR failed to locate pod "cp-automation-dp/emsuibht-12811-x6wxx": pods "emsuibht-12811-x6wxx" not found +6:06PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +6:06PM ERR ClusterUpdater failed error="conn check failed (1/5)" +6:06PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +6:06PM ERR ClusterUpdater failed error="conn check failed (1/5)" +6:06PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-12811-x6wxx\": pods \"emsuibht-12811-x6wxx\" not found" +6:06PM ERR Watcher failed for containers -- failed to locate pod "cp-automation-dp/emsuibht-12811-x6wxx": pods "emsuibht-12811-x6wxx" not found error="failed to locate pod \"cp-automation-dp/emsuibht-12811-x6wxx\": pods \"emsuibht-12811-x6wxx\" not found" +8:07PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +8:07PM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:07PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +8:07PM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:07PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-12811-x6wxx\": pods \"emsuibht-12811-x6wxx\" not found" +8:07PM ERR Watcher failed for containers -- failed to locate pod "cp-automation-dp/emsuibht-12811-x6wxx": pods "emsuibht-12811-x6wxx" not found error="failed to locate pod \"cp-automation-dp/emsuibht-12811-x6wxx\": pods \"emsuibht-12811-x6wxx\" not found" +11:08PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +11:08PM ERR ClusterUpdater failed error="conn check failed (1/5)" +11:08PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +11:08PM ERR ClusterUpdater failed error="conn check failed (1/5)" +11:08PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-12811-x6wxx\": pods \"emsuibht-12811-x6wxx\" not found" +11:08PM ERR Watcher failed for containers -- failed to locate pod "cp-automation-dp/emsuibht-12811-x6wxx": pods "emsuibht-12811-x6wxx" not found error="failed to locate pod \"cp-automation-dp/emsuibht-12811-x6wxx\": pods \"emsuibht-12811-x6wxx\" not found" +12:09AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +12:09AM ERR ClusterUpdater failed error="conn check failed (1/5)" +12:09AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +12:09AM ERR ClusterUpdater failed error="conn check failed (1/5)" +12:09AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-12811-x6wxx\": pods \"emsuibht-12811-x6wxx\" not found" +12:09AM ERR Watcher failed for containers -- failed to locate pod "cp-automation-dp/emsuibht-12811-x6wxx": pods "emsuibht-12811-x6wxx" not found error="failed to locate pod \"cp-automation-dp/emsuibht-12811-x6wxx\": pods \"emsuibht-12811-x6wxx\" not found" +4:00AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +4:00AM ERR ClusterUpdater failed error="conn check failed (1/5)" +7:01AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +7:01AM ERR ClusterUpdater failed error="conn check failed (1/5)" +7:01AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-12811-x6wxx\": pods \"emsuibht-12811-x6wxx\" not found" +7:01AM ERR Watcher failed for containers -- failed to locate pod "cp-automation-dp/emsuibht-12811-x6wxx": pods "emsuibht-12811-x6wxx" not found error="failed to locate pod \"cp-automation-dp/emsuibht-12811-x6wxx\": pods \"emsuibht-12811-x6wxx\" not found" +8:29AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +8:29AM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:29AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +8:29AM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:30AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-12811-x6wxx\": pods \"emsuibht-12811-x6wxx\" not found" +8:30AM ERR Watcher failed for containers -- failed to locate pod "cp-automation-dp/emsuibht-12811-x6wxx": pods "emsuibht-12811-x6wxx" not found error="failed to locate pod \"cp-automation-dp/emsuibht-12811-x6wxx\": pods \"emsuibht-12811-x6wxx\" not found" +8:33AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +8:33AM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:33AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +8:33AM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:33AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-12811-x6wxx\": pods \"emsuibht-12811-x6wxx\" not found" +8:33AM ERR Watcher failed for containers -- failed to locate pod "cp-automation-dp/emsuibht-12811-x6wxx": pods "emsuibht-12811-x6wxx" not found error="failed to locate pod \"cp-automation-dp/emsuibht-12811-x6wxx\": pods \"emsuibht-12811-x6wxx\" not found" +8:39AM ERR Command failed error="exit status 137" +8:39AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuitopicsover-16634-b7jxt -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +8:39AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +8:41AM ERR Command failed error="exit status 137" +8:41AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-6879-2hj79 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +8:41AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +8:52AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +8:52AM ERR ClusterUpdater failed error="conn check failed (1/5)" +12:36PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +12:36PM ERR ClusterUpdater failed error="conn check failed (1/5)" +12:36PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +12:36PM ERR ClusterUpdater failed error="conn check failed (1/5)" +12:40PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +12:40PM ERR ClusterUpdater failed error="conn check failed (1/5)" +12:40PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded (Client.Timeout exceeded while awaiting headers)" +12:40PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:01PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +3:01PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:01PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded (Client.Timeout exceeded while awaiting headers)" +3:01PM ERR ClusterUpdater failed error="conn check failed (1/5)" +7:04PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +7:04PM ERR ClusterUpdater failed error="conn check failed (1/5)" +9:06PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +9:06PM ERR ClusterUpdater failed error="conn check failed (1/5)" +11:07PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +11:07PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +11:07PM ERR ClusterUpdater failed error="conn check failed (1/5)" +11:07PM ERR ClusterUpdater failed error="conn check failed (1/5)" +6:37AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +6:37AM ERR ClusterUpdater failed error="conn check failed (1/5)" +6:37AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +6:37AM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:32AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +8:32AM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:32AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +8:32AM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:33AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +8:33AM ERR ClusterUpdater failed error="conn check failed (2/5)" +8:33AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +8:33AM ERR ClusterUpdater failed error="conn check failed (2/5)" +8:33AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +8:33AM ERR ClusterUpdater failed error="conn check failed (3/5)" +8:33AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +8:33AM ERR ClusterUpdater failed error="conn check failed (3/5)" +8:41AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +8:41AM ERR ClusterUpdater failed error="conn check failed (4/5)" +8:41AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +8:41AM ERR ClusterUpdater failed error="conn check failed (4/5)" +8:41AM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +8:41AM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +8:41AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +8:41AM ERR Conn check failed (5/5). Bailing out! +8:41AM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +8:41AM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +9:18AM INF 🐶 K9s starting up... +9:18AM INF ✅ Kubernetes connectivity +11:12AM INF 🐶 K9s starting up... +11:12AM INF ✅ Kubernetes connectivity +11:14AM INF 🐶 K9s starting up... +11:14AM INF ✅ Kubernetes connectivity +11:15AM ERR Command failed error="exit status 137" +11:15AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuitopicsover-20385-jh4zr -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +11:15AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +11:16AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-20385-jh4zr\": pods \"emsuitopicsover-20385-jh4zr\" not found" +11:16AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-20385-jh4zr\": pods \"emsuitopicsover-20385-jh4zr\" not found" +11:16AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-20385-jh4zr\": pods \"emsuitopicsover-20385-jh4zr\" not found" +11:16AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-20385-jh4zr\": pods \"emsuitopicsover-20385-jh4zr\" not found" +11:16AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-20385-jh4zr\": pods \"emsuitopicsover-20385-jh4zr\" not found" +11:16AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-20385-jh4zr\": pods \"emsuitopicsover-20385-jh4zr\" not found" +11:16AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-20385-jh4zr\": pods \"emsuitopicsover-20385-jh4zr\" not found" +11:16AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-20385-jh4zr\": pods \"emsuitopicsover-20385-jh4zr\" not found" +11:16AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-20385-jh4zr\": pods \"emsuitopicsover-20385-jh4zr\" not found" +11:16AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-20385-jh4zr\": pods \"emsuitopicsover-20385-jh4zr\" not found" +11:16AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-20385-jh4zr\": pods \"emsuitopicsover-20385-jh4zr\" not found" +11:16AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-20385-jh4zr\": pods \"emsuitopicsover-20385-jh4zr\" not found" +11:17AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-20385-jh4zr\": pods \"emsuitopicsover-20385-jh4zr\" not found" +11:17AM ERR Command failed error="exit status 137" +11:17AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-24221-9hqg7 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +11:17AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +11:17AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-24221-9hqg7\": pods \"emsuibht-24221-9hqg7\" not found" +11:17AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-24221-9hqg7\": pods \"emsuibht-24221-9hqg7\" not found" +11:17AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-24221-9hqg7\": pods \"emsuibht-24221-9hqg7\" not found" +11:17AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-24221-9hqg7\": pods \"emsuibht-24221-9hqg7\" not found" +11:17AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-24221-9hqg7\": pods \"emsuibht-24221-9hqg7\" not found" +11:17AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-24221-9hqg7\": pods \"emsuibht-24221-9hqg7\" not found" +11:17AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-24221-9hqg7\": pods \"emsuibht-24221-9hqg7\" not found" +11:17AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-24221-9hqg7\": pods \"emsuibht-24221-9hqg7\" not found" +11:17AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-24221-9hqg7\": pods \"emsuibht-24221-9hqg7\" not found" +11:17AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-20385-jh4zr\": pods \"emsuitopicsover-20385-jh4zr\" not found" +11:17AM WRN reconciler exited error="failed to locate pod \"cp-automation-dp/emsuitopicsover-20385-jh4zr\": pods \"emsuitopicsover-20385-jh4zr\" not found" +11:17AM ERR failed to locate pod "cp-automation-dp/emsuitopicsover-20385-jh4zr": pods "emsuitopicsover-20385-jh4zr" not found +11:17AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-24221-9hqg7\": pods \"emsuibht-24221-9hqg7\" not found" +11:18AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-24221-9hqg7\": pods \"emsuibht-24221-9hqg7\" not found" +11:18AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-24221-9hqg7\": pods \"emsuibht-24221-9hqg7\" not found" +11:18AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-24221-9hqg7\": pods \"emsuibht-24221-9hqg7\" not found" +11:19AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-24221-9hqg7\": pods \"emsuibht-24221-9hqg7\" not found" +11:19AM WRN reconciler exited error="failed to locate pod \"cp-automation-dp/emsuibht-24221-9hqg7\": pods \"emsuibht-24221-9hqg7\" not found" +11:19AM ERR failed to locate pod "cp-automation-dp/emsuibht-24221-9hqg7": pods "emsuibht-24221-9hqg7" not found +12:44PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +12:44PM ERR ClusterUpdater failed error="conn check failed (1/5)" +12:44PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-24221-9hqg7\": pods \"emsuibht-24221-9hqg7\" not found" +12:44PM ERR Watcher failed for containers -- failed to locate pod "cp-automation-dp/emsuibht-24221-9hqg7": pods "emsuibht-24221-9hqg7" not found error="failed to locate pod \"cp-automation-dp/emsuibht-24221-9hqg7\": pods \"emsuibht-24221-9hqg7\" not found" +1:01PM ERR cp-automation-dp/emsuitopicsover-22565-kx52v is not in a running state +1:01PM ERR Command failed error="exit status 137" +1:01PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuitopicsover-22565-kx52v -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:01PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:01PM ERR cp-automation-dp/emsuitopicsover-22565-kx52v is not in a running state +1:01PM ERR Watcher failed for containers -- failed to locate pod "cp-automation-dp/emsuitopicsover-22565-kx52v": pods "emsuitopicsover-22565-kx52v" not found error="failed to locate pod \"cp-automation-dp/emsuitopicsover-22565-kx52v\": pods \"emsuitopicsover-22565-kx52v\" not found" +1:02PM ERR Command failed error="exit status 137" +1:02PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-16194-wzd48 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:02PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:11PM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-one-uninstall-7jat" +1:11PM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-one-uninstall-ghpp" +1:16PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +1:16PM ERR ClusterUpdater failed error="conn check failed (1/5)" +1:16PM ERR ACCESS -- No API server connection +1:16PM INF 🐶 K9s starting up... +1:16PM INF ✅ Kubernetes connectivity +1:18PM ERR Command failed error="exit status 137" +1:18PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-25343-wzzxb -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:18PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:18PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-25343-wzzxb\": pods \"emsuibht-25343-wzzxb\" not found" +1:18PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-25343-wzzxb\": pods \"emsuibht-25343-wzzxb\" not found" +1:18PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-25343-wzzxb\": pods \"emsuibht-25343-wzzxb\" not found" +1:18PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-25343-wzzxb\": pods \"emsuibht-25343-wzzxb\" not found" +1:18PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-25343-wzzxb\": pods \"emsuibht-25343-wzzxb\" not found" +1:18PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-25343-wzzxb\": pods \"emsuibht-25343-wzzxb\" not found" +1:18PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-25343-wzzxb\": pods \"emsuibht-25343-wzzxb\" not found" +1:18PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-25343-wzzxb\": pods \"emsuibht-25343-wzzxb\" not found" +1:18PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-25343-wzzxb\": pods \"emsuibht-25343-wzzxb\" not found" +1:18PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-25343-wzzxb\": pods \"emsuibht-25343-wzzxb\" not found" +1:18PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-25343-wzzxb\": pods \"emsuibht-25343-wzzxb\" not found" +1:19PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-25343-wzzxb\": pods \"emsuibht-25343-wzzxb\" not found" +1:19PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-25343-wzzxb\": pods \"emsuibht-25343-wzzxb\" not found" +1:19PM WRN reconciler exited error="failed to locate pod \"cp-automation-dp/emsuibht-25343-wzzxb\": pods \"emsuibht-25343-wzzxb\" not found" +1:19PM ERR failed to locate pod "cp-automation-dp/emsuibht-25343-wzzxb": pods "emsuibht-25343-wzzxb" not found +1:19PM ERR Tail logs failed error="pods \"emsuibht-25343-wzzxb\" not found" +1:19PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-25343-wzzxb\": pods \"emsuibht-25343-wzzxb\" not found" +1:19PM ERR Watcher failed for containers -- failed to locate pod "cp-automation-dp/emsuibht-25343-wzzxb": pods "emsuibht-25343-wzzxb" not found error="failed to locate pod \"cp-automation-dp/emsuibht-25343-wzzxb\": pods \"emsuibht-25343-wzzxb\" not found" +1:22PM ERR Command failed error="exit status 137" +1:22PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuitopicsover-528-8d6hx -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:22PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:24PM ERR Command failed error="exit status 137" +1:24PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-1673-nsk4g -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:24PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:26PM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-one-uninstall-xq0k" +1:54PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +1:54PM ERR ClusterUpdater failed error="conn check failed (1/5)" +1:54PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +1:54PM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:14PM INF 🐶 K9s starting up... +2:14PM INF ✅ Kubernetes connectivity +2:14PM INF 🐶 K9s starting up... +2:14PM INF ✅ Kubernetes connectivity +2:15PM INF 🐶 K9s starting up... +2:15PM INF ✅ Kubernetes connectivity +2:25PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +2:25PM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:35PM ERR Command failed error="exit status 137" +2:35PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuitopicsover-24416-wxj86 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +2:35PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +2:37PM ERR Command failed error="exit status 137" +2:37PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-16145-nc7q6 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +2:37PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:36PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +3:36PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:36PM ERR reconcile failed "v1/pods" error="pods \"emsuibht-16145-nc7q6\" not found" +3:36PM ERR refresh failed error="pods \"emsuibht-16145-nc7q6\" not found" +4:13PM WRN  Dial Failed! error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": read tcp 10.123.230.38:56910->10.97.130.64:443: read: connection reset by peer" +4:13PM ERR refresh failed for gvr: batch/v1/jobs error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": read tcp 10.123.230.38:56910->10.97.130.64:443: read: connection reset by peer" +4:13PM ERR refresh failed for gvr: batch/v1/jobs error="[list] access denied on resource \"cp-automation-dp\":\"batch/v1/jobs\"" +4:13PM ERR refresh failed for gvr: batch/v1/jobs error="[list] access denied on resource \"cp-automation-dp\":\"batch/v1/jobs\"" +4:13PM ERR refresh failed for gvr: batch/v1/jobs error="[list] access denied on resource \"cp-automation-dp\":\"batch/v1/jobs\"" +4:13PM ERR refresh failed for gvr: batch/v1/jobs error="[list] access denied on resource \"cp-automation-dp\":\"batch/v1/jobs\"" +4:13PM ERR refresh failed for gvr: batch/v1/jobs error="[list] access denied on resource \"cp-automation-dp\":\"batch/v1/jobs\"" +4:13PM ERR refresh failed for gvr: batch/v1/jobs error="[list] access denied on resource \"cp-automation-dp\":\"batch/v1/jobs\"" +4:13PM ERR refresh failed for gvr: batch/v1/jobs error="[list] access denied on resource \"cp-automation-dp\":\"batch/v1/jobs\"" +4:13PM ERR refresh failed for gvr: batch/v1/jobs error="[list] access denied on resource \"cp-automation-dp\":\"batch/v1/jobs\"" +4:14PM ERR refresh failed for gvr: batch/v1/jobs error="[list] access denied on resource \"cp-automation-dp\":\"batch/v1/jobs\"" +4:14PM ERR refresh failed for gvr: batch/v1/jobs error="[list] access denied on resource \"cp-automation-dp\":\"batch/v1/jobs\"" +4:14PM ERR refresh failed for gvr: batch/v1/jobs error="[list] access denied on resource \"cp-automation-dp\":\"batch/v1/jobs\"" +4:14PM ERR refresh failed for gvr: batch/v1/jobs error="[list] access denied on resource \"cp-automation-dp\":\"batch/v1/jobs\"" +4:15PM ERR refresh failed for gvr: batch/v1/jobs error="[list] access denied on resource \"cp-automation-dp\":\"batch/v1/jobs\"" +4:15PM WRN reconciler exited error="[list] access denied on resource \"cp-automation-dp\":\"batch/v1/jobs\"" +4:15PM ERR [list] access denied on resource "cp-automation-dp":"batch/v1/jobs" +7:46PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +7:46PM ERR ClusterUpdater failed error="conn check failed (1/5)" +7:46PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +7:46PM ERR ClusterUpdater failed error="conn check failed (1/5)" +11:49PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +11:49PM ERR ClusterUpdater failed error="conn check failed (1/5)" +11:49PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +11:49PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:39AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +4:39AM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:39AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +4:39AM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:23AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +8:23AM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:23AM WRN  Dial Failed! error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": context deadline exceeded" +8:23AM ERR refresh failed for gvr: batch/v1/jobs error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": context deadline exceeded" +8:23AM ERR refresh failed for gvr: batch/v1/jobs error="[list] access denied on resource \"cp-automation-dp\":\"batch/v1/jobs\"" +8:23AM ERR refresh failed for gvr: batch/v1/jobs error="[list] access denied on resource \"cp-automation-dp\":\"batch/v1/jobs\"" +8:23AM ERR refresh failed for gvr: batch/v1/jobs error="[list] access denied on resource \"cp-automation-dp\":\"batch/v1/jobs\"" +8:23AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +8:23AM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:23AM WRN reconciler exited error="context canceled" +9:17AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +9:17AM ERR ClusterUpdater failed error="conn check failed (1/5)" +9:17AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +9:17AM ERR ClusterUpdater failed error="conn check failed (1/5)" +9:21AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded (Client.Timeout exceeded while awaiting headers)" +9:21AM ERR ClusterUpdater failed error="conn check failed (1/5)" +9:59AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +9:59AM ERR ClusterUpdater failed error="conn check failed (1/5)" +9:59AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +9:59AM ERR ClusterUpdater failed error="conn check failed (1/5)" +10:58AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +10:58AM ERR ClusterUpdater failed error="conn check failed (1/5)" +10:58AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +10:58AM ERR ClusterUpdater failed error="conn check failed (1/5)" +10:58AM WRN  Dial Failed! error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": context deadline exceeded" +10:58AM ERR refresh failed for gvr: batch/v1/jobs error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": context deadline exceeded" +10:58AM WRN reconciler exited error="context canceled" +12:49PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +12:49PM ERR ClusterUpdater failed error="conn check failed (1/5)" +1:31PM INF 🐶 K9s starting up... +1:31PM INF ✅ Kubernetes connectivity +1:35PM ERR no port-forward defined +1:35PM ERR no port-forward defined +1:35PM WRN log-reader canceled error="stream canceled context canceled for cp1-ns/tp-cp-monitoring-service-86b6589699-z4mvm (tp-cp-monitoring-service)" +1:55PM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/emsuibht-10730-6fdtd (run-test)" +1:56PM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/emsuibht-10730-6fdtd (run-test)" +2:32PM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/emsuibht-29585-2jbcj (run-test)" +2:32PM ERR Command failed error="exit status 130" +2:32PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-29585-2jbcj -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +2:32PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +2:32PM ERR Command failed error="exit status 130" +2:32PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-29585-2jbcj -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +2:32PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +3:23PM INF 🐶 K9s starting up... +3:23PM INF ✅ Kubernetes connectivity +3:28PM ERR Command failed error="exit status 137" +3:28PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-29643-2kct9 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:28PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:28PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-29643-2kct9\": pods \"emsuibht-29643-2kct9\" not found" +3:28PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-29643-2kct9\": pods \"emsuibht-29643-2kct9\" not found" +3:28PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-29643-2kct9\": pods \"emsuibht-29643-2kct9\" not found" +3:28PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-29643-2kct9\": pods \"emsuibht-29643-2kct9\" not found" +3:28PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-29643-2kct9\": pods \"emsuibht-29643-2kct9\" not found" +3:28PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-29643-2kct9\": pods \"emsuibht-29643-2kct9\" not found" +3:28PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-29643-2kct9\": pods \"emsuibht-29643-2kct9\" not found" +3:28PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-29643-2kct9\": pods \"emsuibht-29643-2kct9\" not found" +3:28PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-29643-2kct9\": pods \"emsuibht-29643-2kct9\" not found" +3:28PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-29643-2kct9\": pods \"emsuibht-29643-2kct9\" not found" +3:29PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-29643-2kct9\": pods \"emsuibht-29643-2kct9\" not found" +3:29PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-29643-2kct9\": pods \"emsuibht-29643-2kct9\" not found" +3:29PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-29643-2kct9\": pods \"emsuibht-29643-2kct9\" not found" +3:30PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-29643-2kct9\": pods \"emsuibht-29643-2kct9\" not found" +3:30PM WRN reconciler exited error="failed to locate pod \"cp-automation-dp/emsuibht-29643-2kct9\": pods \"emsuibht-29643-2kct9\" not found" +3:30PM ERR failed to locate pod "cp-automation-dp/emsuibht-29643-2kct9": pods "emsuibht-29643-2kct9" not found +10:35AM INF 🐶 K9s starting up... +10:35AM INF ✅ Kubernetes connectivity +10:35AM INF 🐶 K9s starting up... +10:35AM INF ✅ Kubernetes connectivity +10:41AM ERR Command failed error="exit status 137" +10:41AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-23932-t6f7p -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +10:41AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:25PM INF 🐶 K9s starting up... +3:25PM INF ✅ Kubernetes connectivity +3:33PM ERR Command failed error="exit status 137" +3:33PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-29226-bmckt -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:33PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +11:54AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +11:54AM ERR ClusterUpdater failed error="conn check failed (1/5)" +1:31PM INF 🐶 K9s starting up... +1:31PM INF ✅ Kubernetes connectivity +1:32PM ERR cp-automation-dp/emsuitopicsover-7691-rt6qr is not in a running state +1:33PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-15467-hbzzf\" is waiting to start: ContainerCreating for cp-automation-dp/emsuibht-15467-hbzzf (run-test)" +1:33PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-15467-hbzzf\" is waiting to start: ContainerCreating for cp-automation-dp/emsuibht-15467-hbzzf (run-test)" +1:33PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-15467-hbzzf\" is waiting to start: ContainerCreating for cp-automation-dp/emsuibht-15467-hbzzf (run-test)" +1:33PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-15467-hbzzf\" is waiting to start: ContainerCreating for cp-automation-dp/emsuibht-15467-hbzzf (run-test)" +1:33PM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for cp-automation-dp/emsuibht-15467-hbzzf (run-test)" +1:33PM WRN log-reader EOF error="stream closed EOF for cp-automation-dp/emsuitopicsover-7691-rt6qr (run-test)" +1:35PM ERR Command failed error="exit status 137" +1:35PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-15467-hbzzf -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:35PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:35PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-15467-hbzzf\": pods \"emsuibht-15467-hbzzf\" not found" +1:35PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-15467-hbzzf\": pods \"emsuibht-15467-hbzzf\" not found" +1:35PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-15467-hbzzf\": pods \"emsuibht-15467-hbzzf\" not found" +1:35PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-15467-hbzzf\": pods \"emsuibht-15467-hbzzf\" not found" +1:35PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-15467-hbzzf\": pods \"emsuibht-15467-hbzzf\" not found" +1:35PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-15467-hbzzf\": pods \"emsuibht-15467-hbzzf\" not found" +1:35PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-15467-hbzzf\": pods \"emsuibht-15467-hbzzf\" not found" +1:35PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-15467-hbzzf\": pods \"emsuibht-15467-hbzzf\" not found" +1:35PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-15467-hbzzf\": pods \"emsuibht-15467-hbzzf\" not found" +1:35PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-15467-hbzzf\": pods \"emsuibht-15467-hbzzf\" not found" +1:35PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-15467-hbzzf\": pods \"emsuibht-15467-hbzzf\" not found" +1:35PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-15467-hbzzf\": pods \"emsuibht-15467-hbzzf\" not found" +1:36PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-15467-hbzzf\": pods \"emsuibht-15467-hbzzf\" not found" +1:49PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-15467-hbzzf\": pods \"emsuibht-15467-hbzzf\" not found" +1:49PM WRN reconciler exited error="failed to locate pod \"cp-automation-dp/emsuibht-15467-hbzzf\": pods \"emsuibht-15467-hbzzf\" not found" +1:49PM ERR failed to locate pod "cp-automation-dp/emsuibht-15467-hbzzf": pods "emsuibht-15467-hbzzf" not found +2:18PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-7691-rt6qr\": pods \"emsuitopicsover-7691-rt6qr\" not found" +2:18PM ERR Watcher failed for containers -- failed to locate pod "cp-automation-dp/emsuitopicsover-7691-rt6qr": pods "emsuitopicsover-7691-rt6qr" not found error="failed to locate pod \"cp-automation-dp/emsuitopicsover-7691-rt6qr\": pods \"emsuitopicsover-7691-rt6qr\" not found" +2:21PM ERR Command failed error="exit status 137" +2:21PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuitopicsover-30203-npnqk -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +2:21PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +2:23PM ERR Command failed error="exit status 137" +2:23PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-532-wzxcc -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +2:23PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +2:31PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +2:31PM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:31PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded (Client.Timeout exceeded while awaiting headers)" +2:31PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:20PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded (Client.Timeout exceeded while awaiting headers)" +3:20PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:35PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +3:35PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:35PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +3:35PM ERR ClusterUpdater failed error="conn check failed (1/5)" +5:20PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": read tcp 10.123.230.38:58535->10.97.130.64:443: read: operation timed out" +5:20PM ERR ClusterUpdater failed error="conn check failed (1/5)" +5:20PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": read tcp 10.123.230.38:57894->10.97.130.64:443: read: operation timed out" +5:20PM ERR ClusterUpdater failed error="conn check failed (1/5)" +5:20PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +5:20PM ERR ClusterUpdater failed error="conn check failed (2/5)" +5:41PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +5:41PM ERR ClusterUpdater failed error="conn check failed (2/5)" +6:04PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: operation timed out" +6:04PM ERR ClusterUpdater failed error="conn check failed (3/5)" +7:05PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: operation timed out" +7:05PM ERR ClusterUpdater failed error="conn check failed (3/5)" +9:07PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: operation timed out" +9:07PM ERR ClusterUpdater failed error="conn check failed (4/5)" +9:07PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +9:07PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +9:07PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: operation timed out" +9:07PM ERR ClusterUpdater failed error="conn check failed (4/5)" +9:07PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +9:07PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +9:38AM INF 🐶 K9s starting up... +1:43PM INF 🐶 K9s starting up... +1:43PM INF ✅ Kubernetes connectivity +1:44PM INF 🐶 K9s starting up... +1:44PM INF ✅ Kubernetes connectivity +1:44PM INF 🐶 K9s starting up... +1:44PM INF ✅ Kubernetes connectivity +1:44PM INF 🐶 K9s starting up... +1:44PM INF ✅ Kubernetes connectivity +1:47PM INF 🐶 K9s starting up... +1:47PM INF ✅ Kubernetes connectivity +2:10PM INF 🐶 K9s starting up... +2:10PM INF ✅ Kubernetes connectivity +2:18PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +2:18PM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:20PM INF 🐶 K9s starting up... +2:20PM INF ✅ Kubernetes connectivity +2:20PM INF 🐶 K9s starting up... +2:20PM INF ✅ Kubernetes connectivity +2:20PM WRN log-reader EOF error="stream closed EOF for nperf14-my-ns/tp-tibtunnel-7fd5c79548-skpmk (tibtunnel)" +2:26PM INF 🐶 K9s starting up... +2:26PM INF ✅ Kubernetes connectivity +2:27PM WRN log-reader EOF error="stream closed EOF for nperf12-my-ns/tp-tibtunnel-58665bb888-hv4zh (tibtunnel)" +2:29PM INF 🐶 K9s starting up... +2:29PM INF ✅ Kubernetes connectivity +2:29PM INF 🐶 K9s starting up... +2:29PM INF ✅ Kubernetes connectivity +2:32PM WRN log-reader EOF error="stream closed EOF for nperf12-my-ns/tp-tibtunnel-675d9d9fd8-tn76w (tibtunnel)" +2:38PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +2:38PM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:38PM WRN log-reader EOF error="stream closed EOF for nperf12-my-ns/tp-tibtunnel-675d9d9fd8-tn76w (tibtunnel)" +2:41PM INF 🐶 K9s starting up... +2:41PM INF ✅ Kubernetes connectivity +2:48PM INF 🐶 K9s starting up... +2:48PM INF ✅ Kubernetes connectivity +3:52PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +3:52PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:57PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +4:57PM ERR ClusterUpdater failed error="conn check failed (1/5)" +6:01PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +6:01PM ERR ClusterUpdater failed error="conn check failed (1/5)" +6:01PM WRN  Dial Failed! error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": context deadline exceeded" +6:01PM ERR refresh failed for gvr: v1/pods error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": context deadline exceeded" +6:01PM WRN reconciler exited error="context canceled" +7:01PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +7:01PM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:03PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +8:03PM ERR ClusterUpdater failed error="conn check failed (1/5)" +9:04PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +9:04PM ERR ClusterUpdater failed error="conn check failed (1/5)" +11:27PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +11:27PM ERR ClusterUpdater failed error="conn check failed (1/5)" +1:10AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +1:10AM ERR ClusterUpdater failed error="conn check failed (1/5)" +5:30AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +5:30AM ERR ClusterUpdater failed error="conn check failed (1/5)" +7:32AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +7:32AM ERR ClusterUpdater failed error="conn check failed (1/5)" +9:23AM ERR Command failed error="exit status 1" +9:23AM ERR Exec failed "/usr/local/bin/kubectl attach --context kubernetes-admin@kubernetes -it -n nperf12-my-ns bwadapter-6578dd5d84-74n6w -c dp-bw-adapter": exit status 1 + error="exit status 1\n" +9:23AM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +12:49PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +12:49PM ERR ClusterUpdater failed error="conn check failed (1/5)" +12:49PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +12:49PM ERR ClusterUpdater failed error="conn check failed (2/5)" +12:49PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +12:49PM ERR ClusterUpdater failed error="conn check failed (3/5)" +1:04PM INF 🐶 K9s starting up... +1:04PM INF ✅ Kubernetes connectivity +1:04PM WRN k9s latest rev fetch failed Get "https://api.github.com/repos/derailed/k9s/releases/latest": context deadline exceeded +1:04PM WRN k9s latest rev fetch failed Get "https://api.github.com/repos/derailed/k9s/releases/latest": context deadline exceeded +1:04PM WRN k9s latest rev fetch failed Get "https://api.github.com/repos/derailed/k9s/releases/latest": context deadline exceeded +1:04PM WRN k9s latest rev fetch failed Get "https://api.github.com/repos/derailed/k9s/releases/latest": context deadline exceeded +1:04PM WRN log-reader EOF error="stream closed EOF for msg-bmdp/tp-tibtunnel-7889f68b5b-vpzfq (tibtunnel)" +1:05PM INF 🐶 K9s starting up... +1:05PM INF ✅ Kubernetes connectivity +1:07PM INF 🐶 K9s starting up... +1:07PM INF ✅ Kubernetes connectivity +1:07PM WRN log-reader EOF error="stream closed EOF for msg-bmdp/tp-tibtunnel-7889f68b5b-vpzfq (tibtunnel)" +1:11PM WRN log-reader EOF error="stream closed EOF for msg-bmdp/tp-tibtunnel-7889f68b5b-vpzfq (tibtunnel)" +1:13PM WRN log-reader EOF error="stream closed EOF for msg-bmdp/tp-tibtunnel-7889f68b5b-vpzfq (tibtunnel)" +1:47PM ERR can't connect to cluster error="Get \"https://10.97.130.125:16443/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +1:47PM ERR ClusterUpdater failed error="conn check failed (1/5)" +1:47PM WRN log-reader EOF error="stream closed EOF for msg-bmdp/tp-tibtunnel-7889f68b5b-vpzfq (tibtunnel)" +2:28PM ERR can't connect to cluster error="Get \"https://10.97.130.125:16443/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +2:28PM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:28PM WRN log-reader EOF error="stream closed EOF for msg-bmdp/tp-tibtunnel-7889f68b5b-vpzfq (tibtunnel)" +2:57PM ERR can't connect to cluster error="Get \"https://10.97.130.125:16443/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +2:57PM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:57PM ERR can't connect to cluster error="Get \"https://10.97.130.125:16443/version?timeout=15s\": context deadline exceeded" +2:57PM ERR ClusterUpdater failed error="conn check failed (2/5)" +2:58PM WRN log-reader EOF error="stream closed EOF for msg-bmdp/tp-tibtunnel-7889f68b5b-vpzfq (tibtunnel)" +3:35PM ERR can't connect to cluster error="Get \"https://10.97.130.125:16443/version?timeout=15s\": context deadline exceeded" +3:35PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:35PM WRN log-reader EOF error="stream closed EOF for msg-bmdp/tp-tibtunnel-7889f68b5b-vpzfq (tibtunnel)" +5:38PM ERR can't connect to cluster error="Get \"https://10.97.130.125:16443/version?timeout=15s\": context deadline exceeded" +5:38PM ERR ClusterUpdater failed error="conn check failed (1/5)" +5:38PM WRN log-reader EOF error="stream closed EOF for msg-bmdp/tp-tibtunnel-7889f68b5b-vpzfq (tibtunnel)" +7:39PM ERR can't connect to cluster error="Get \"https://10.97.130.125:16443/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +7:39PM ERR ClusterUpdater failed error="conn check failed (1/5)" +7:39PM WRN log-reader EOF error="stream closed EOF for msg-bmdp/tp-tibtunnel-7889f68b5b-vpzfq (tibtunnel)" +9:09PM ERR can't connect to cluster error="Get \"https://10.97.130.125:16443/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +9:09PM ERR ClusterUpdater failed error="conn check failed (1/5)" +9:09PM WRN log-reader EOF error="stream closed EOF for msg-bmdp/tp-tibtunnel-7889f68b5b-vpzfq (tibtunnel)" +11:42PM ERR can't connect to cluster error="Get \"https://10.97.130.125:16443/version?timeout=15s\": context deadline exceeded" +11:42PM ERR ClusterUpdater failed error="conn check failed (1/5)" +11:42PM WRN log-reader EOF error="stream closed EOF for msg-bmdp/tp-tibtunnel-7889f68b5b-vpzfq (tibtunnel)" +12:43AM ERR can't connect to cluster error="Get \"https://10.97.130.125:16443/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +12:43AM ERR ClusterUpdater failed error="conn check failed (1/5)" +12:43AM WRN log-reader EOF error="stream closed EOF for msg-bmdp/tp-tibtunnel-7889f68b5b-vpzfq (tibtunnel)" +5:45AM ERR can't connect to cluster error="Get \"https://10.97.130.125:16443/version?timeout=15s\": context deadline exceeded" +5:45AM ERR ClusterUpdater failed error="conn check failed (1/5)" +5:45AM WRN log-reader EOF error="stream closed EOF for msg-bmdp/tp-tibtunnel-7889f68b5b-vpzfq (tibtunnel)" +6:46AM ERR can't connect to cluster error="Get \"https://10.97.130.125:16443/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +6:46AM ERR ClusterUpdater failed error="conn check failed (1/5)" +6:46AM WRN log-reader EOF error="stream closed EOF for msg-bmdp/tp-tibtunnel-7889f68b5b-vpzfq (tibtunnel)" +8:41AM ERR can't connect to cluster error="Get \"https://10.97.130.125:16443/version?timeout=15s\": context deadline exceeded" +8:41AM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:41AM WRN log-reader EOF error="stream closed EOF for msg-bmdp/tp-tibtunnel-7889f68b5b-vpzfq (tibtunnel)" +9:43AM INF 🐶 K9s starting up... +9:43AM INF ✅ Kubernetes connectivity +9:44AM INF 🐶 K9s starting up... +9:44AM INF ✅ Kubernetes connectivity +8:59AM INF 🐶 K9s starting up... +8:59AM INF ✅ Kubernetes connectivity +3:04PM INF 🐶 K9s starting up... +3:04PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +3:04PM INF ✅ Kubernetes connectivity +3:05PM WRN log-reader EOF error="stream closed EOF for default/mysql-1753301083-0 (preserve-logs-symlinks)" +3:05PM WRN log-reader EOF error="stream closed EOF for default/mysql-1753301083-0 (mysql)" +3:07PM WRN log-reader EOF error="stream closed EOF for default/mysql-1753301083-0 (preserve-logs-symlinks)" +3:31PM INF 🐶 K9s starting up... +3:31PM ERR config refine failed error="unable to activate context \"\": getcontext - invalid context specified: \"\"" +3:31PM ERR Fail to locate metrics-server error="Get \"http://localhost:8080/api\": dial tcp 127.0.0.1:8080: connect: connection refused" +3:31PM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp 127.0.0.1:8080: connect: connection refused" +3:31PM INF ✅ Kubernetes connectivity +3:31PM WRN Save failed. no active config detected +3:31PM ERR Fail to load global/context configuration error="unable to activate context \"\": getcontext - invalid context specified: \"\"\nGet \"http://localhost:8080/api\": dial tcp 127.0.0.1:8080: connect: connection refused\ncannot connect to context: \nk8s connection failed for context: " +3:31PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +3:31PM ERR Load cluster resources - No API server connection +3:31PM ERR failed to list contexts error="no connection" +3:31PM WRN Unable to dial discovery API error="no connection to dial" +3:31PM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp 127.0.0.1:8080: connect: connection refused" +3:31PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +3:31PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +3:31PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +3:31PM ERR Load cluster resources - No API server connection +3:31PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +3:31PM WRN Unable to dial discovery API error="no connection to dial" +3:31PM WRN Plugins load failed: getcontext - invalid context specified: "" +3:31PM WRN Save failed. no active config detected +3:31PM ERR nuking k9s shell pod error="getcontext - invalid context specified: \"\"" +3:31PM WRN Save failed. no active config detected +3:31PM INF 🐶 K9s starting up... +3:31PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +3:31PM INF ✅ Kubernetes connectivity +3:32PM ERR logs-stream error="stream logs failed container \"mysql\" in pod \"mysql-1753302704-0\" is waiting to start: PodInitializing for default/mysql-1753302704-0 (mysql)" +3:32PM ERR logs-stream error="stream logs failed container \"mysql\" in pod \"mysql-1753302704-0\" is waiting to start: PodInitializing for default/mysql-1753302704-0 (mysql)" +3:32PM ERR logs-stream error="stream logs failed container \"preserve-logs-symlinks\" in pod \"mysql-1753302704-0\" is waiting to start: PodInitializing for default/mysql-1753302704-0 (preserve-logs-symlinks)" +3:32PM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for default/mysql-1753302704-0 (mysql)" +3:32PM ERR logs-stream error="stream logs failed container \"preserve-logs-symlinks\" in pod \"mysql-1753302704-0\" is waiting to start: PodInitializing for default/mysql-1753302704-0 (preserve-logs-symlinks)" +3:32PM ERR logs-stream error="stream logs failed container \"preserve-logs-symlinks\" in pod \"mysql-1753302704-0\" is waiting to start: PodInitializing for default/mysql-1753302704-0 (preserve-logs-symlinks)" +3:32PM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for default/mysql-1753302704-0 (preserve-logs-symlinks)" +3:32PM ERR logs-stream error="stream logs failed container \"preserve-logs-symlinks\" in pod \"mysql-1753302704-0\" is waiting to start: PodInitializing for default/mysql-1753302704-0 (preserve-logs-symlinks)" +3:32PM ERR logs-stream error="stream logs failed container \"preserve-logs-symlinks\" in pod \"mysql-1753302704-0\" is waiting to start: PodInitializing for default/mysql-1753302704-0 (preserve-logs-symlinks)" +3:32PM ERR logs-stream error="stream logs failed container \"preserve-logs-symlinks\" in pod \"mysql-1753302704-0\" is waiting to start: PodInitializing for default/mysql-1753302704-0 (preserve-logs-symlinks)" +3:32PM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for default/mysql-1753302704-0 (preserve-logs-symlinks)" +3:32PM ERR logs-stream error="stream logs failed container \"preserve-logs-symlinks\" in pod \"mysql-1753302704-0\" is waiting to start: PodInitializing for default/mysql-1753302704-0 (preserve-logs-symlinks)" +3:32PM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for default/mysql-1753302704-0 (preserve-logs-symlinks)" +3:36PM WRN log-reader canceled error="stream canceled context canceled for default/mysql-1753302704-0 (mysql)" +10:13AM WRN log-reader canceled error="stream canceled context canceled for default/mysql-1753302704-0 (mysql)" +9:55AM INF 🐶 K9s starting up... +9:55AM INF ✅ Kubernetes connectivity +10:04AM ERR Command failed error="exit status 130" +10:04AM ERR Exec failed "/usr/local/bin/kubectl exec --context cp-cluster-qa3-ca-maas-dev -it -n cp1-ns qa-sts-0 -c msg-qa -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +10:04AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +10:27AM ERR can't connect to cluster error="Get \"https://AB7AF49A07B9792F9A46EEC1C2C7343A.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded (Client.Timeout exceeded while awaiting headers)" +10:27AM ERR ClusterUpdater failed error="conn check failed (1/5)" +11:24AM INF 🐶 K9s starting up... +11:24AM ERR Fail to locate metrics-server error="Get \"https://vc-rv.kubeconfig.emsapp4.na.tibco.com/api\": dial tcp: lookup vc-rv.kubeconfig.emsapp4.na.tibco.com: no such host" +11:24AM ERR can't connect to cluster error="Get \"https://vc-rv.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp: lookup vc-rv.kubeconfig.emsapp4.na.tibco.com: no such host" +11:24AM INF ✅ Kubernetes connectivity +11:24AM WRN namespace validation failed for: "vbmdp" error="user not authorized to list all namespaces" +11:24AM ERR Fail to load global/context configuration error="Get \"https://vc-rv.kubeconfig.emsapp4.na.tibco.com/api\": dial tcp: lookup vc-rv.kubeconfig.emsapp4.na.tibco.com: no such host\ncannot connect to context: kubernetes-admin@kubernetes\nk8s connection failed for context: kubernetes-admin@kubernetes" +11:24AM ERR Load cluster resources - No API server connection +11:24AM ERR failed to list contexts error="no connection" +11:24AM WRN Unable to dial discovery API error="no connection to dial" +11:24AM ERR can't connect to cluster error="Get \"https://vc-rv.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp: lookup vc-rv.kubeconfig.emsapp4.na.tibco.com: no such host" +11:24AM ERR Load cluster resources - No API server connection +11:24AM WRN Unable to dial discovery API error="no connection to dial" +11:24AM WRN namespace validation failed for: "vbmdp" error="user not authorized to list all namespaces" +11:24AM WRN namespace validation failed for: "vbmdp" error="user not authorized to list all namespaces" +11:26AM INF 🐶 K9s starting up... +11:26AM INF ✅ Kubernetes connectivity +11:31AM INF 🐶 K9s starting up... +11:31AM INF ✅ Kubernetes connectivity +12:54PM INF 🐶 K9s starting up... +12:54PM INF ✅ Kubernetes connectivity +12:54PM INF 🐶 K9s starting up... +12:54PM INF ✅ Kubernetes connectivity +12:56PM INF 🐶 K9s starting up... +12:56PM ERR Fail to locate metrics-server error="Get \"https://vc-rv2.kubeconfig.emsapp4.na.tibco.com/api\": dial tcp: lookup vc-rv2.kubeconfig.emsapp4.na.tibco.com: no such host" +12:56PM ERR can't connect to cluster error="Get \"https://vc-rv2.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp: lookup vc-rv2.kubeconfig.emsapp4.na.tibco.com: no such host" +12:56PM INF ✅ Kubernetes connectivity +12:56PM WRN namespace validation failed for: "vdp" error="user not authorized to list all namespaces" +12:56PM ERR Fail to load global/context configuration error="Get \"https://vc-rv2.kubeconfig.emsapp4.na.tibco.com/api\": dial tcp: lookup vc-rv2.kubeconfig.emsapp4.na.tibco.com: no such host\ncannot connect to context: kubernetes-admin@kubernetes\nk8s connection failed for context: kubernetes-admin@kubernetes" +12:56PM ERR Load cluster resources - No API server connection +12:56PM ERR failed to list contexts error="no connection" +12:56PM WRN Unable to dial discovery API error="no connection to dial" +12:56PM ERR can't connect to cluster error="Get \"https://vc-rv2.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp: lookup vc-rv2.kubeconfig.emsapp4.na.tibco.com: no such host" +12:56PM ERR Load cluster resources - No API server connection +12:56PM WRN Unable to dial discovery API error="no connection to dial" +12:56PM ERR can't connect to cluster error="Get \"https://vc-rv2.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp: lookup vc-rv2.kubeconfig.emsapp4.na.tibco.com: no such host" +12:56PM WRN  Dial Failed! error="Post \"https://vc-rv2.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp: lookup vc-rv2.kubeconfig.emsapp4.na.tibco.com: no such host" +12:56PM WRN namespace validation failed for: "vbmdp" error="user not authorized to list all namespaces" +12:56PM WRN namespace validation failed for: "vdp" error="user not authorized to list all namespaces" +12:56PM WRN Unable to validate namespace: "vdp". Using "vdp" as active namespace +12:56PM WRN namespace validation failed for: "vdp" error="user not authorized to list all namespaces" +12:56PM WRN  Dial Failed! error="Post \"https://vc-rv2.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp: lookup vc-rv2.kubeconfig.emsapp4.na.tibco.com: no such host" +12:56PM WRN Fail CRDs load error="Post \"https://vc-rv2.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp: lookup vc-rv2.kubeconfig.emsapp4.na.tibco.com: no such host" +12:56PM WRN  Dial Failed! error="Post \"https://vc-rv2.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp: lookup vc-rv2.kubeconfig.emsapp4.na.tibco.com: no such host" +12:56PM ERR can't connect to cluster error="Get \"https://vc-rv2.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp: lookup vc-rv2.kubeconfig.emsapp4.na.tibco.com: no such host" +12:56PM ERR Cluster updater failed! error="conn check failed (1/5)" +12:56PM WRN Unable to dial discovery API error="no connection to dial" +12:56PM ERR can't connect to cluster error="Get \"https://vc-rv2.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp: lookup vc-rv2.kubeconfig.emsapp4.na.tibco.com: no such host" +12:56PM WRN  Dial Failed! error="Post \"https://vc-rv2.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp: lookup vc-rv2.kubeconfig.emsapp4.na.tibco.com: no such host" +12:56PM WRN namespace validation failed for: "vdp" error="user not authorized to list all namespaces" +12:56PM WRN namespace validation failed for: "vdp" error="user not authorized to list all namespaces" +12:56PM WRN Unable to validate namespace: "vdp". Using "vdp" as active namespace +12:56PM WRN namespace validation failed for: "vdp" error="user not authorized to list all namespaces" +12:56PM WRN  Dial Failed! error="Post \"https://vc-rv2.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp: lookup vc-rv2.kubeconfig.emsapp4.na.tibco.com: no such host" +12:56PM WRN Fail CRDs load error="Post \"https://vc-rv2.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp: lookup vc-rv2.kubeconfig.emsapp4.na.tibco.com: no such host" +12:56PM WRN  Dial Failed! error="Post \"https://vc-rv2.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp: lookup vc-rv2.kubeconfig.emsapp4.na.tibco.com: no such host" +12:56PM ERR can't connect to cluster error="Get \"https://vc-rv2.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp: lookup vc-rv2.kubeconfig.emsapp4.na.tibco.com: no such host" +12:56PM ERR Cluster updater failed! error="conn check failed (2/5)" +12:56PM WRN Unable to dial discovery API error="no connection to dial" +12:56PM ERR can't connect to cluster error="Get \"https://vc-rv2.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp: lookup vc-rv2.kubeconfig.emsapp4.na.tibco.com: no such host" +12:56PM WRN  Dial Failed! error="Post \"https://vc-rv2.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp: lookup vc-rv2.kubeconfig.emsapp4.na.tibco.com: no such host" +12:56PM WRN namespace validation failed for: "vdp" error="user not authorized to list all namespaces" +12:56PM WRN namespace validation failed for: "vdp" error="user not authorized to list all namespaces" +12:56PM WRN Unable to validate namespace: "vdp". Using "vdp" as active namespace +12:56PM WRN namespace validation failed for: "vdp" error="user not authorized to list all namespaces" +12:56PM WRN  Dial Failed! error="Post \"https://vc-rv2.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp: lookup vc-rv2.kubeconfig.emsapp4.na.tibco.com: no such host" +12:56PM WRN Fail CRDs load error="Post \"https://vc-rv2.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp: lookup vc-rv2.kubeconfig.emsapp4.na.tibco.com: no such host" +12:56PM WRN  Dial Failed! error="Post \"https://vc-rv2.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp: lookup vc-rv2.kubeconfig.emsapp4.na.tibco.com: no such host" +12:56PM ERR can't connect to cluster error="Get \"https://vc-rv2.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp: lookup vc-rv2.kubeconfig.emsapp4.na.tibco.com: no such host" +12:56PM ERR Cluster updater failed! error="conn check failed (3/5)" +12:56PM WRN Unable to dial discovery API error="no connection to dial" +12:56PM ERR can't connect to cluster error="Get \"https://vc-rv2.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp: lookup vc-rv2.kubeconfig.emsapp4.na.tibco.com: no such host" +12:56PM WRN  Dial Failed! error="Post \"https://vc-rv2.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp: lookup vc-rv2.kubeconfig.emsapp4.na.tibco.com: no such host" +12:56PM WRN namespace validation failed for: "vdp" error="user not authorized to list all namespaces" +12:56PM WRN namespace validation failed for: "vdp" error="user not authorized to list all namespaces" +12:56PM WRN Unable to validate namespace: "vdp". Using "vdp" as active namespace +12:56PM WRN namespace validation failed for: "vdp" error="user not authorized to list all namespaces" +12:56PM WRN  Dial Failed! error="Post \"https://vc-rv2.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp: lookup vc-rv2.kubeconfig.emsapp4.na.tibco.com: no such host" +12:56PM WRN Fail CRDs load error="Post \"https://vc-rv2.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp: lookup vc-rv2.kubeconfig.emsapp4.na.tibco.com: no such host" +12:56PM WRN  Dial Failed! error="Post \"https://vc-rv2.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp: lookup vc-rv2.kubeconfig.emsapp4.na.tibco.com: no such host" +12:56PM ERR can't connect to cluster error="Get \"https://vc-rv2.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp: lookup vc-rv2.kubeconfig.emsapp4.na.tibco.com: no such host" +12:56PM ERR Cluster updater failed! error="conn check failed (4/5)" +12:56PM WRN Unable to dial discovery API error="no connection to dial" +12:56PM WRN namespace validation failed for: "vdp" error="user not authorized to list all namespaces" +12:56PM WRN namespace validation failed for: "vdp" error="user not authorized to list all namespaces" +12:56PM INF 🐶 K9s starting up... +12:56PM INF ✅ Kubernetes connectivity +1:56PM INF 🐶 K9s starting up... +1:56PM INF ✅ Kubernetes connectivity +2:34PM INF 🐶 K9s starting up... +2:34PM INF ✅ Kubernetes connectivity +2:37PM INF 🐶 K9s starting up... +2:37PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +2:37PM INF ✅ Kubernetes connectivity +3:05PM WRN log-reader EOF error="stream closed EOF for default/mysql-1753302704-0 (preserve-logs-symlinks)" +3:05PM WRN log-reader canceled error="stream canceled context canceled for default/mysql-1753302704-0 (mysql)" +8:41AM INF 🐶 K9s starting up... +8:41AM INF ✅ Kubernetes connectivity +9:01AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +9:01AM ERR ClusterUpdater failed error="conn check failed (1/5)" +9:48AM INF 🐶 K9s starting up... +9:48AM INF ✅ Kubernetes connectivity +9:55AM INF 🐶 K9s starting up... +9:55AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +9:55AM INF ✅ Kubernetes connectivity +9:55AM INF 🐶 K9s starting up... +9:55AM INF ✅ Kubernetes connectivity +10:08AM INF 🐶 K9s starting up... +10:08AM INF ✅ Kubernetes connectivity +10:15AM ERR can't connect to cluster error="Get \"https://10.97.130.125:16443/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +10:15AM ERR ClusterUpdater failed error="conn check failed (1/5)" +10:17AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +10:17AM ERR ClusterUpdater failed error="conn check failed (1/5)" +10:18AM ERR can't connect to cluster error="Get \"https://10.97.130.125:16443/version?timeout=15s\": context deadline exceeded" +10:18AM ERR ClusterUpdater failed error="conn check failed (1/5)" +10:20AM ERR can't connect to cluster error="Get \"https://10.97.130.125:16443/version?timeout=15s\": context deadline exceeded" +10:20AM ERR ClusterUpdater failed error="conn check failed (1/5)" +10:22AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +10:22AM ERR ClusterUpdater failed error="conn check failed (1/5)" +10:25AM ERR can't connect to cluster error="Get \"https://10.97.130.125:16443/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +10:25AM ERR ClusterUpdater failed error="conn check failed (1/5)" +10:28AM ERR can't connect to cluster error="Get \"https://10.97.130.125:16443/version?timeout=15s\": context deadline exceeded" +10:28AM ERR ClusterUpdater failed error="conn check failed (1/5)" +10:28AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +10:28AM ERR ClusterUpdater failed error="conn check failed (1/5)" +11:03AM INF 🐶 K9s starting up... +11:03AM INF ✅ Kubernetes connectivity +11:04AM INF 🐶 K9s starting up... +11:04AM INF ✅ Kubernetes connectivity +11:05AM ERR Command failed error="exit status 1" +11:05AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp1-ns tp-cp-web-server-8494c4db89-tn6fh -c cpwebserver -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +11:05AM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +2:33PM INF 🐶 K9s starting up... +2:33PM INF ✅ Kubernetes connectivity +2:55PM INF 🐶 K9s starting up... +2:55PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +2:55PM INF ✅ Kubernetes connectivity +2:55PM INF 🐶 K9s starting up... +2:55PM INF ✅ Kubernetes connectivity +2:58PM ERR Command failed error="exit status 137" +2:58PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuitopicsover-25092-w6q44 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +2:58PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +2:58PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-25092-w6q44\": pods \"emsuitopicsover-25092-w6q44\" not found" +2:58PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-25092-w6q44\": pods \"emsuitopicsover-25092-w6q44\" not found" +2:58PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-25092-w6q44\": pods \"emsuitopicsover-25092-w6q44\" not found" +2:58PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-25092-w6q44\": pods \"emsuitopicsover-25092-w6q44\" not found" +2:58PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-25092-w6q44\": pods \"emsuitopicsover-25092-w6q44\" not found" +2:58PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-25092-w6q44\": pods \"emsuitopicsover-25092-w6q44\" not found" +2:58PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-25092-w6q44\": pods \"emsuitopicsover-25092-w6q44\" not found" +2:58PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuitopicsover-25092-w6q44\": pods \"emsuitopicsover-25092-w6q44\" not found" +2:58PM WRN reconciler exited error="context canceled" +2:58PM WRN log-reader EOF error="stream closed EOF for cp-automation-dp/cp-auto-ems-one-emsinit-n4mw4 (main)" +3:30PM ERR Command failed error="exit status 137" +3:30PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-17013-fhwwt -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:30PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:33PM ERR Command failed error="exit status 1" +3:33PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-32226-jb92q -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +3:33PM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +3:34PM ERR Command failed error="exit status 137" +3:34PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuitopicsover-19038-xktqt -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:34PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:48PM ERR Command failed error="exit status 137" +3:48PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-15272-czq7r -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:48PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:48PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-15272-czq7r\": pods \"emsuibht-15272-czq7r\" not found" +3:48PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-15272-czq7r\": pods \"emsuibht-15272-czq7r\" not found" +3:48PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-15272-czq7r\": pods \"emsuibht-15272-czq7r\" not found" +3:48PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-15272-czq7r\": pods \"emsuibht-15272-czq7r\" not found" +3:48PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-15272-czq7r\": pods \"emsuibht-15272-czq7r\" not found" +3:48PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-15272-czq7r\": pods \"emsuibht-15272-czq7r\" not found" +3:48PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-15272-czq7r\": pods \"emsuibht-15272-czq7r\" not found" +3:48PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-15272-czq7r\": pods \"emsuibht-15272-czq7r\" not found" +3:48PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-15272-czq7r\": pods \"emsuibht-15272-czq7r\" not found" +3:48PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-15272-czq7r\": pods \"emsuibht-15272-czq7r\" not found" +3:48PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-15272-czq7r\": pods \"emsuibht-15272-czq7r\" not found" +3:49PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-15272-czq7r\": pods \"emsuibht-15272-czq7r\" not found" +3:49PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-15272-czq7r\": pods \"emsuibht-15272-czq7r\" not found" +3:50PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-15272-czq7r\": pods \"emsuibht-15272-czq7r\" not found" +3:50PM WRN reconciler exited error="failed to locate pod \"cp-automation-dp/emsuibht-15272-czq7r\": pods \"emsuibht-15272-czq7r\" not found" +3:50PM ERR failed to locate pod "cp-automation-dp/emsuibht-15272-czq7r": pods "emsuibht-15272-czq7r" not found +3:58PM ERR Command failed error="exit status 137" +3:58PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuitopicsover-1360-c6mkg -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:58PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +4:02PM ERR Command failed error="exit status 137" +4:02PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-28725-pqc66 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +4:02PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +4:03PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-28725-pqc66\": pods \"emsuibht-28725-pqc66\" not found" +4:03PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-28725-pqc66\": pods \"emsuibht-28725-pqc66\" not found" +4:03PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-28725-pqc66\": pods \"emsuibht-28725-pqc66\" not found" +4:03PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-28725-pqc66\": pods \"emsuibht-28725-pqc66\" not found" +4:03PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-28725-pqc66\": pods \"emsuibht-28725-pqc66\" not found" +4:03PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-28725-pqc66\": pods \"emsuibht-28725-pqc66\" not found" +4:03PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-28725-pqc66\": pods \"emsuibht-28725-pqc66\" not found" +4:03PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-28725-pqc66\": pods \"emsuibht-28725-pqc66\" not found" +4:03PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-28725-pqc66\": pods \"emsuibht-28725-pqc66\" not found" +4:03PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-28725-pqc66\": pods \"emsuibht-28725-pqc66\" not found" +4:03PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-28725-pqc66\": pods \"emsuibht-28725-pqc66\" not found" +4:03PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-28725-pqc66\": pods \"emsuibht-28725-pqc66\" not found" +4:04PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-28725-pqc66\": pods \"emsuibht-28725-pqc66\" not found" +4:04PM WRN reconciler exited error="failed to locate pod \"cp-automation-dp/emsuibht-28725-pqc66\": pods \"emsuibht-28725-pqc66\" not found" +4:04PM ERR failed to locate pod "cp-automation-dp/emsuibht-28725-pqc66": pods "emsuibht-28725-pqc66" not found +9:05AM INF 🐶 K9s starting up... +9:05AM INF ✅ Kubernetes connectivity +9:46AM INF 🐶 K9s starting up... +9:46AM INF ✅ Kubernetes connectivity +9:46AM INF 🐶 K9s starting up... +9:46AM INF ✅ Kubernetes connectivity +9:46AM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-jqhthjuv-uninstall-kg3z" +9:46AM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-8j0tmo11-uninstall-ntad" +9:46AM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-ycxmfm42-uninstall-fipx" +9:46AM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-f58991i2-uninstall-oe8n" +9:46AM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-9oyia22b-uninstall-mx16" +9:49AM ERR Command failed error="exit status 137" +9:49AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuitopicsover-22228-x75cj -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +9:49AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +9:52AM ERR Command failed error="exit status 137" +9:52AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-2739-6vkh8 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +9:52AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +9:57AM ERR Command failed error="exit status 137" +9:57AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuitopicsover-9067-btr8p -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +9:57AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +9:59AM ERR Command failed error="exit status 137" +9:59AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-30657-w42rj -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +9:59AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +10:15AM ERR Command failed error="exit status 137" +10:15AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuitopicsover-19643-9gfkz -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +10:15AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +10:17AM ERR Command failed error="exit status 137" +10:17AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-22392-rbgpj -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +10:17AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +10:30AM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-one-uninstall-2olu" +10:30AM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-one-uninstall-gziq" +10:30AM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-8g2etcq3-uninstall-v6c7" +10:30AM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-jiqr8ule-uninstall-limu" +10:39AM ERR Command failed error="exit status 130" +10:39AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-27469-tpmc2 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +10:39AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +10:39AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-27469-tpmc2" +10:39AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-27469" +10:49AM ERR Command failed error="exit status 137" +10:49AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-26427-ftgx2 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +10:49AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +12:46PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +12:46PM ERR ClusterUpdater failed error="conn check failed (1/5)" +12:46PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +12:46PM ERR ClusterUpdater failed error="conn check failed (1/5)" +12:46PM WRN  Dial Failed! error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": context deadline exceeded" +12:46PM WRN namespace validation failed for: "vdp" error="user not authorized to list all namespaces" +12:46PM WRN namespace validation failed for: "cp1-ns" error="user not authorized to list all namespaces" +12:46PM WRN namespace validation failed for: "msg-qa" error="user not authorized to list all namespaces" +12:46PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +12:46PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +12:46PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +12:46PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +12:46PM WRN namespace validation failed for: "vbmdp" error="user not authorized to list all namespaces" +12:46PM WRN namespace validation failed for: "nperf12-my-ns" error="user not authorized to list all namespaces" +12:46PM WRN namespace validation failed for: "nperf12-my-ns" error="user not authorized to list all namespaces" +12:46PM WRN namespace validation failed for: "matt-dp" error="user not authorized to list all namespaces" +12:46PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +12:46PM ERR ClusterUpdater failed error="conn check failed (1/5)" +1:05PM ERR can't connect to cluster error="Get \"https://10.97.130.125:16443/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +1:05PM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:46AM INF 🐶 K9s starting up... +8:46AM INF ✅ Kubernetes connectivity +8:52AM ERR Command failed error="exit status 137" +8:52AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-26351-927fg -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +8:52AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +8:52AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-26351-927fg\": pods \"emsuibmdpbht-26351-927fg\" not found" +8:52AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-26351-927fg\": pods \"emsuibmdpbht-26351-927fg\" not found" +8:52AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-26351-927fg\": pods \"emsuibmdpbht-26351-927fg\" not found" +8:52AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-26351-927fg\": pods \"emsuibmdpbht-26351-927fg\" not found" +8:52AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-26351-927fg\": pods \"emsuibmdpbht-26351-927fg\" not found" +8:52AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-26351-927fg\": pods \"emsuibmdpbht-26351-927fg\" not found" +8:52AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-26351-927fg\": pods \"emsuibmdpbht-26351-927fg\" not found" +8:52AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-26351-927fg\": pods \"emsuibmdpbht-26351-927fg\" not found" +8:52AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-26351-927fg\": pods \"emsuibmdpbht-26351-927fg\" not found" +8:52AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-26351-927fg\": pods \"emsuibmdpbht-26351-927fg\" not found" +8:52AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-26351-927fg\": pods \"emsuibmdpbht-26351-927fg\" not found" +8:52AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-26351-927fg\": pods \"emsuibmdpbht-26351-927fg\" not found" +8:53AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-26351-927fg\": pods \"emsuibmdpbht-26351-927fg\" not found" +8:54AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-26351-927fg\": pods \"emsuibmdpbht-26351-927fg\" not found" +8:54AM WRN reconciler exited error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-26351-927fg\": pods \"emsuibmdpbht-26351-927fg\" not found" +8:54AM ERR failed to locate pod "cp-automation-dp/emsuibmdpbht-26351-927fg": pods "emsuibmdpbht-26351-927fg" not found +9:19AM ERR Command failed error="exit status 137" +9:19AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-13280-q6r7t -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +9:19AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +8:29AM INF 🐶 K9s starting up... +8:29AM INF ✅ Kubernetes connectivity +8:40AM INF 🐶 K9s starting up... +8:40AM INF ✅ Kubernetes connectivity +8:42AM ERR Command failed error="exit status 137" +8:42AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuitopicsover-22894-gzcgd -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +8:42AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +8:47AM ERR Command failed error="exit status 130" +8:47AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp cp-auto-ems-u69edr7d-emsinit-z6d45 -c main -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +8:47AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +8:47AM ERR Command failed error="exit status 130" +8:47AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-10550-6zx5n -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +8:47AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +8:49AM ERR Command failed error="exit status 137" +8:49AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-26233-xs8r8 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +8:49AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +8:49AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-26233-xs8r8\": pods \"emsuibmdpbht-26233-xs8r8\" not found" +8:49AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-26233-xs8r8\": pods \"emsuibmdpbht-26233-xs8r8\" not found" +8:49AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-26233-xs8r8\": pods \"emsuibmdpbht-26233-xs8r8\" not found" +8:49AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-26233-xs8r8\": pods \"emsuibmdpbht-26233-xs8r8\" not found" +8:49AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-26233-xs8r8\": pods \"emsuibmdpbht-26233-xs8r8\" not found" +8:49AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-26233-xs8r8\": pods \"emsuibmdpbht-26233-xs8r8\" not found" +8:49AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-26233-xs8r8\": pods \"emsuibmdpbht-26233-xs8r8\" not found" +8:49AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-26233-xs8r8\": pods \"emsuibmdpbht-26233-xs8r8\" not found" +8:49AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-26233-xs8r8\": pods \"emsuibmdpbht-26233-xs8r8\" not found" +8:50AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-26233-xs8r8\": pods \"emsuibmdpbht-26233-xs8r8\" not found" +8:50AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-26233-xs8r8\": pods \"emsuibmdpbht-26233-xs8r8\" not found" +8:50AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-26233-xs8r8\": pods \"emsuibmdpbht-26233-xs8r8\" not found" +8:50AM WRN reconciler exited error="context canceled" +8:54AM ERR Command failed error="exit status 137" +8:54AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuitopicsover-11851-dw8md -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +8:54AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +8:57AM ERR Command failed error="exit status 130" +8:57AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-25977-ddzzh -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +8:57AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +8:59AM ERR Command failed error="exit status 137" +8:59AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-24954-vlg26 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +8:59AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +9:00AM ERR Command failed error="exit status 137" +9:00AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-25977-ddzzh -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +9:00AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +9:00AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-25977-ddzzh\": pods \"emsuibht-25977-ddzzh\" not found" +9:00AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-25977-ddzzh\": pods \"emsuibht-25977-ddzzh\" not found" +9:00AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-25977-ddzzh\": pods \"emsuibht-25977-ddzzh\" not found" +9:00AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-25977-ddzzh\": pods \"emsuibht-25977-ddzzh\" not found" +9:00AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-25977-ddzzh\": pods \"emsuibht-25977-ddzzh\" not found" +9:00AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-25977-ddzzh\": pods \"emsuibht-25977-ddzzh\" not found" +9:00AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-25977-ddzzh\": pods \"emsuibht-25977-ddzzh\" not found" +9:00AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-25977-ddzzh\": pods \"emsuibht-25977-ddzzh\" not found" +9:00AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-25977-ddzzh\": pods \"emsuibht-25977-ddzzh\" not found" +9:00AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-25977-ddzzh\": pods \"emsuibht-25977-ddzzh\" not found" +9:01AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-25977-ddzzh\": pods \"emsuibht-25977-ddzzh\" not found" +9:01AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-25977-ddzzh\": pods \"emsuibht-25977-ddzzh\" not found" +9:01AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-25977-ddzzh\": pods \"emsuibht-25977-ddzzh\" not found" +9:01AM WRN reconciler exited error="failed to locate pod \"cp-automation-dp/emsuibht-25977-ddzzh\": pods \"emsuibht-25977-ddzzh\" not found" +9:01AM ERR failed to locate pod "cp-automation-dp/emsuibht-25977-ddzzh": pods "emsuibht-25977-ddzzh" not found +9:11AM INF 🐶 K9s starting up... +9:11AM INF ✅ Kubernetes connectivity +9:12AM WRN log-reader EOF error="stream closed EOF for elastic-system/dp-config-es-eck-custom-resources-operator-86f65644d8-jtpg7 (eck-custom-resources-operator)" +9:13AM ERR Command failed error="exit status 1" +9:13AM ERR Exec failed "/usr/local/bin/kubectl exec --context dp-cluster-msg131-ca-mpddev -it -n elastic-system dp-config-es-eck-custom-resources-operator-86f65644d8-jtpg7 -c eck-custom-resources-operator -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +9:13AM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +9:26AM ERR Command failed error="exit status 130" +9:26AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-24413-v5mkj -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +9:26AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +9:27AM ERR Command failed error="exit status 137" +9:27AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuitopicsover-18448-8jqmf -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +9:27AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +9:36AM ERR Command failed error="exit status 137" +9:36AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-4579-2kztd -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +9:36AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +10:06AM INF 🐶 K9s starting up... +10:06AM INF ✅ Kubernetes connectivity +12:18PM INF 🐶 K9s starting up... +12:18PM INF ✅ Kubernetes connectivity +12:19PM INF 🐶 K9s starting up... +12:19PM INF ✅ Kubernetes connectivity +12:23PM INF 🐶 K9s starting up... +12:23PM INF ✅ Kubernetes connectivity +3:12PM INF 🐶 K9s starting up... +3:12PM INF ✅ Kubernetes connectivity +3:12PM ERR Command failed error="exit status 1" +3:12PM ERR Exec failed "/usr/local/bin/kubectl exec --context dp-cluster-msg131-ca-mpddev -it -n elastic-system dp-config-es-eck-custom-resources-operator-f847c758b-qbpfd -c eck-custom-resources-operator -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +3:12PM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +3:12PM WRN log-reader EOF error="stream closed EOF for elastic-system/dp-config-es-eck-custom-resources-operator-f847c758b-qbpfd (eck-custom-resources-operator)" +3:12PM INF 🐶 K9s starting up... +3:12PM INF ✅ Kubernetes connectivity +3:12PM WRN log-reader EOF error="stream closed EOF for elastic-system/dp-config-es-eck-custom-resources-operator-f847c758b-qbpfd (eck-custom-resources-operator)" +3:14PM INF 🐶 K9s starting up... +3:14PM INF ✅ Kubernetes connectivity +3:14PM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-eck-custom-resources-operator-f847c758b-qbpfd (eck-custom-resources-operator)" +3:15PM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-eck-custom-resources-operator-f847c758b-qbpfd (eck-custom-resources-operator)" +3:16PM INF 🐶 K9s starting up... +3:16PM INF ✅ Kubernetes connectivity +3:16PM WRN log-reader EOF error="stream closed EOF for elastic-system/dp-config-es-eck-custom-resources-operator-f847c758b-qbpfd (eck-custom-resources-operator)" +3:17PM WRN log-reader EOF error="stream closed EOF for elastic-system/dp-config-es-eck-custom-resources-operator-f847c758b-qbpfd (eck-custom-resources-operator)" +3:17PM WRN log-reader EOF error="stream closed EOF for elastic-system/dp-config-es-eck-custom-resources-operator-f847c758b-qbpfd (eck-custom-resources-operator)" +3:19PM INF 🐶 K9s starting up... +3:19PM INF ✅ Kubernetes connectivity +3:26PM WRN log-reader EOF error="stream closed EOF for elastic-system/dp-config-es-eck-custom-resources-operator-f847c758b-qbpfd (eck-custom-resources-operator)" +3:28PM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-eck-custom-resources-operator-f847c758b-qbpfd (eck-custom-resources-operator)" +3:29PM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-eck-custom-resources-operator-f847c758b-qbpfd (eck-custom-resources-operator)" +3:30PM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-eck-custom-resources-operator-f847c758b-qbpfd (eck-custom-resources-operator)" +3:34PM INF 🐶 K9s starting up... +3:34PM INF ✅ Kubernetes connectivity +3:34PM INF 🐶 K9s starting up... +3:34PM INF ✅ Kubernetes connectivity +3:35PM WRN log-reader EOF error="stream closed EOF for elastic-system/dp-config-es-eck-custom-resources-operator-f847c758b-qbpfd (eck-custom-resources-operator)" +3:45PM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-eck-custom-resources-operator-f847c758b-qbpfd (eck-custom-resources-operator)" +3:48PM WRN Deleted (0) portforward for "elastic-system/dp-config-es-eck-custom-resources-operator-f847c758b-qbpfd" +3:48PM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-eck-custom-resources-operator-f847c758b-pf9wv (eck-custom-resources-operator)" +3:49PM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-eck-custom-resources-operator-f847c758b-pf9wv (eck-custom-resources-operator)" +3:49PM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-kb-5884f8d574-krvh4 (kibana)" +3:49PM WRN Deleted (0) portforward for "elastic-system/dp-config-es-kb-76dc44d755-sffbs" +3:49PM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-eck-custom-resources-operator-f847c758b-pf9wv (eck-custom-resources-operator)" +3:50PM WRN log-reader EOF error="stream closed EOF for elastic-system/dp-config-es-eck-custom-resources-operator-f847c758b-pf9wv (eck-custom-resources-operator)" +3:52PM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-kb-76dc44d755-l2vdr (kibana)" +3:52PM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-eck-custom-resources-operator-f847c758b-pf9wv (eck-custom-resources-operator)" +3:53PM WRN log-reader EOF error="stream closed EOF for elastic-system/dp-config-es-eck-custom-resources-operator-f847c758b-pf9wv (eck-custom-resources-operator)" +4:00PM WRN log-reader canceled error="stream canceled context canceled for elastic-system/elastic-operator-0 (manager)" +4:00PM ERR Command failed error="exit status 1" +4:00PM ERR Exec failed "/usr/local/bin/kubectl exec --context dp-cluster-msg131-ca-mpddev -it -n elastic-system elastic-operator-0 -c manager -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +4:00PM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +8:00PM ERR Command failed error="exit status 1" +8:00PM ERR Exec failed "/usr/local/bin/kubectl exec --context dp-cluster-msg131-ca-mpddev -it -n elastic-system dp-config-es-es-default-0 -c elasticsearch -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +8:00PM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +8:38AM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-es-default-0 (elasticsearch)" +8:38AM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-eck-custom-resources-operator-f847c758b-pf9wv (eck-custom-resources-operator)" +8:48AM WRN log-reader EOF error="stream closed EOF for elastic-system/dp-config-es-eck-custom-resources-operator-f847c758b-pf9wv (eck-custom-resources-operator)" +9:35AM INF 🐶 K9s starting up... +9:35AM INF ✅ Kubernetes connectivity +9:48AM INF 🐶 K9s starting up... +9:48AM INF ✅ Kubernetes connectivity +9:57AM INF 🐶 K9s starting up... +9:57AM INF ✅ Kubernetes connectivity +10:10AM INF 🐶 K9s starting up... +10:10AM INF ✅ Kubernetes connectivity +10:11AM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-kb-76dc44d755-l2vdr (kibana)" +10:11AM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-kb-76dc44d755-l2vdr (kibana)" +10:12AM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-kb-5884f8d574-krvh4 (kibana)" +10:13AM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-es-default-0 (elasticsearch)" +10:13AM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-eck-custom-resources-operator-f847c758b-pf9wv (eck-custom-resources-operator)" +10:33AM INF 🐶 K9s starting up... +10:33AM INF ✅ Kubernetes connectivity +10:34AM WRN log-reader canceled error="stream canceled context canceled for prometheus-system/prometheus-kube-prometheus-stack-prometheus-0 (prometheus)" +10:34AM WRN log-reader canceled error="stream canceled context canceled for prometheus-system/prometheus-kube-prometheus-stack-prometheus-0 (config-reloader)" +10:35AM INF 🐶 K9s starting up... +10:35AM INF ✅ Kubernetes connectivity +10:36AM WRN log-reader canceled error="stream canceled context canceled for prometheus-system/prometheus-kube-prometheus-stack-prometheus-0 (prometheus)" +10:36AM WRN log-reader canceled error="stream canceled context canceled for prometheus-system/kube-prometheus-stack-operator-c57b48ddc-mfvlp (kube-prometheus-stack)" +11:13AM INF 🐶 K9s starting up... +11:13AM INF ✅ Kubernetes connectivity +11:14AM WRN log-reader EOF error="stream closed EOF for cp1-ns/tp-cp-core-upgrade-njen-hsrhl (tsc-upgrade)" +11:16AM WRN log-reader canceled error="stream canceled context canceled for nperf12-my-ns/o11y-service-7978cfdfcf-6tl9s (tp-o11y-service)" +11:26AM INF 🐶 K9s starting up... +11:26AM INF ✅ Kubernetes connectivity +11:26AM WRN log-reader EOF error="stream closed EOF for msgdp-postgres/emsbad-ems-0 (emsbad-ems)" +11:28AM INF 🐶 K9s starting up... +11:28AM INF ✅ Kubernetes connectivity +11:28AM INF 🐶 K9s starting up... +11:28AM INF ✅ Kubernetes connectivity +11:28AM INF 🐶 K9s starting up... +11:28AM INF ✅ Kubernetes connectivity +11:30AM WRN log-reader canceled error="stream canceled context canceled for eks-071025/dm-10v3a-ems-1 (dm-10v3a-ems)" +11:36AM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-kb-76dc44d755-l2vdr (kibana)" +11:37AM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-kb-76dc44d755-l2vdr (kibana)" +12:23PM INF 🐶 K9s starting up... +12:23PM INF ✅ Kubernetes connectivity +12:23PM WRN log-reader canceled error="stream canceled context canceled for elastic-system/elastic-operator-0 (manager)" +12:27PM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-es-default-0 (elasticsearch)" +12:28PM WRN log-reader canceled error="stream canceled context canceled for elastic-system/elastic-operator-0 (manager)" +12:28PM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-kb-5884f8d574-krvh4 (kibana)" +12:29PM WRN log-reader EOF error="stream closed EOF for elastic-system/dp-config-es-eck-custom-resources-operator-f847c758b-pf9wv (eck-custom-resources-operator)" +12:30PM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-es-default-0 (elasticsearch)" +12:30PM WRN Deleted (0) portforward for "elastic-system/dp-config-es-kb-76dc44d755-l2vdr" +12:30PM WRN Deleted (0) portforward for "elastic-system/elastic-operator-0" +12:30PM WRN Deleted (0) portforward for "elastic-system/dp-config-es-kb-5884f8d574-krvh4" +12:31PM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-kb-5884f8d574-vqw64 (kibana)" +12:32PM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-kb-5884f8d574-vqw64 (kibana)" +12:32PM WRN log-reader EOF error="stream closed EOF for elastic-system/dp-config-es-eck-custom-resources-operator-f847c758b-pf9wv (eck-custom-resources-operator)" +12:32PM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-kb-76dc44d755-g8xkq (kibana)" +12:33PM WRN Deleted (0) portforward for "elastic-system/dp-config-es-eck-custom-resources-operator-f847c758b-pf9wv" +12:33PM WRN Deleted (0) portforward for "elastic-system/dp-config-es-apm-server-6c9ccbbfb6-mmk5d" +12:33PM WRN Deleted (0) portforward for "elastic-system/dp-config-es-es-default-0" +12:34PM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-eck-custom-resources-operator-f847c758b-vs6x9 (eck-custom-resources-operator)" +12:34PM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-eck-custom-resources-operator-f847c758b-vs6x9 (eck-custom-resources-operator)" +12:34PM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-kb-76dc44d755-g8xkq (kibana)" +12:34PM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-es-default-0 (elasticsearch)" +12:36PM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-kb-5884f8d574-vqw64 (kibana)" +12:36PM WRN log-reader EOF error="stream closed EOF for elastic-system/dp-config-es-kb-5884f8d574-vqw64 (elastic-internal-init-config)" +12:36PM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-kb-5884f8d574-vqw64 (kibana)" +12:36PM WRN log-reader EOF error="stream closed EOF for elastic-system/dp-config-es-kb-5884f8d574-vqw64 (elastic-internal-init-config)" +12:36PM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-kb-5884f8d574-vqw64 (kibana)" +12:36PM ERR no port-forward defined +12:37PM WRN Deleted (1) portforward for "elastic-system/dp-config-es-kb-5884f8d574-vqw64|kibana|5601:5601" +12:37PM WRN Deleted (0) portforward for "elastic-system/dp-config-es-kb-5884f8d574-vqw64|kibana|5601:5601" +12:37PM WRN log-reader EOF error="stream closed EOF for elastic-system/dp-config-es-eck-custom-resources-operator-f847c758b-vs6x9 (eck-custom-resources-operator)" +12:39PM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-kb-76dc44d755-g8xkq (kibana)" +12:39PM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-apm-server-6c9ccbbfb6-hx2gf (apm-server)" +12:43PM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-kb-5884f8d574-vqw64 (kibana)" +12:44PM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-kb-5884f8d574-vqw64 (kibana)" +12:44PM ERR no port-forward defined +12:45PM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-kb-5884f8d574-vqw64 (kibana)" +12:47PM ERR Command failed error="exit status 52" +12:47PM ERR Exec failed "/usr/local/bin/kubectl exec --context dp-cluster-msg131-ca-mpddev -it -n elastic-system dp-config-es-kb-76dc44d755-g8xkq -c kibana -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 52 + error="exit status 52\n" +12:47PM ERR Shell exec failed: exit status 52 + error="exit status 52\n" +12:49PM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-es-default-0 (elasticsearch)" +12:49PM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-kb-5884f8d574-vqw64 (kibana)" +12:56PM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-kb-5884f8d574-vqw64 (kibana)" +1:35PM ERR Command failed error="exit status 137" +1:35PM ERR Exec failed "/usr/local/bin/kubectl exec --context dp-cluster-msg131-ca-mpddev -it -n elastic-system dp-config-es-kb-5884f8d574-vqw64 -c kibana -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:35PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +2:01PM WRN log-reader EOF error="stream closed EOF for elastic-system/dp-config-es-kb-76dc44d755-g8xkq (kibana)" +2:03PM INF 🐶 K9s starting up... +2:03PM INF ✅ Kubernetes connectivity +2:03PM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-kb-6c89bb8b8-z9d5x (kibana)" +2:04PM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-kb-6c89bb8b8-z9d5x (kibana)" +2:06PM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-es-default-0 (elasticsearch)" +2:07PM INF 🐶 K9s starting up... +2:07PM INF ✅ Kubernetes connectivity +2:07PM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-es-default-0 (elasticsearch)" +2:09PM ERR Command failed error="exit status 130" +2:09PM ERR Exec failed "/usr/local/bin/kubectl exec --context dp-cluster-msg131-ca-mpddev -it -n elastic-system dp-config-es-es-default-0 -c elasticsearch -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +2:09PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +2:09PM ERR no port-forward defined +2:09PM ERR no port-forward defined +2:09PM WRN log-reader EOF error="stream closed EOF for elastic-system/dp-config-es-eck-custom-resources-operator-5d887858f6-nh2mb (eck-custom-resources-operator)" +2:12PM WRN log-reader EOF error="stream closed EOF for elastic-system/dp-config-es-eck-custom-resources-operator-5d887858f6-nh2mb (eck-custom-resources-operator)" +2:14PM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-eck-custom-resources-operator-5d887858f6-nh2mb (eck-custom-resources-operator)" +2:14PM WRN Deleted (0) portforward for "elastic-system/dp-config-es-eck-custom-resources-operator-5d887858f6-nh2mb" +2:16PM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-eck-custom-resources-operator-5d887858f6-pdkvd (eck-custom-resources-operator)" +2:17PM WRN Deleted (0) portforward for "elastic-system/dp-config-es-apm-server-594d664488-dw5fb" +2:17PM WRN Deleted (0) portforward for "elastic-system/dp-config-es-eck-custom-resources-operator-5d887858f6-pdkvd" +2:17PM WRN Deleted (0) portforward for "elastic-system/dp-config-es-es-default-0" +2:17PM WRN Deleted (0) portforward for "elastic-system/dp-config-es-eck-custom-resources-operator-5d887858f6-pdkvd" +2:17PM WRN Deleted (0) portforward for "elastic-system/elastic-operator-0" +2:17PM WRN Deleted (0) portforward for "elastic-system/dp-config-es-kb-5884f8d574-vqw64" +2:17PM WRN Deleted (0) portforward for "elastic-system/dp-config-es-kb-6c89bb8b8-z9d5x" +2:17PM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-eck-custom-resources-operator-5d887858f6-97p9l (eck-custom-resources-operator)" +2:19PM WRN log-reader EOF error="stream closed EOF for elastic-system/dp-config-es-eck-custom-resources-operator-5d887858f6-97p9l (eck-custom-resources-operator)" +2:26PM INF 🐶 K9s starting up... +2:26PM INF ✅ Kubernetes connectivity +2:26PM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-es-default-0 (elasticsearch)" +2:33PM WRN Deleted (0) portforward for "elastic-system/dp-config-es-apm-server-594d664488-7q98s" +2:33PM WRN Deleted (0) portforward for "elastic-system/dp-config-es-eck-custom-resources-operator-5d887858f6-97p9l" +2:33PM WRN Deleted (0) portforward for "elastic-system/dp-config-es-es-default-0" +2:33PM WRN Deleted (0) portforward for "elastic-system/dp-config-es-kb-6c89bb8b8-2gp9q" +2:33PM WRN Deleted (0) portforward for "elastic-system/dp-config-es-kb-5884f8d574-ntmvt" +2:33PM WRN Deleted (0) portforward for "elastic-system/elastic-operator-0" +2:36PM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-es-default-0 (elasticsearch)" +2:54PM INF 🐶 K9s starting up... +2:54PM INF ✅ Kubernetes connectivity +2:54PM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-es-default-0 (elasticsearch)" +2:54PM WRN Deleted (0) portforward for "elastic-system/elastic-operator-0" +2:54PM WRN Deleted (0) portforward for "elastic-system/dp-config-es-kb-76dc44d755-nkckq" +2:54PM WRN Deleted (0) portforward for "elastic-system/dp-config-es-kb-6c89bb8b8-7qd9d" +2:54PM WRN Deleted (0) portforward for "elastic-system/dp-config-es-es-default-0" +2:54PM WRN Deleted (0) portforward for "elastic-system/dp-config-es-eck-custom-resources-operator-5d887858f6-bzm5f" +2:54PM WRN Deleted (0) portforward for "elastic-system/dp-config-es-apm-server-594d664488-rcwtk" +2:55PM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-eck-custom-resources-operator-5d887858f6-s8gb7 (eck-custom-resources-operator)" +2:55PM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-es-default-0 (elasticsearch)" +2:59PM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-kb-76dc44d755-d595c (kibana)" +4:06PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +4:06PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:06PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +4:06PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:06PM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-es-default-0 (elasticsearch)" +4:08PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp: lookup BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com: no such host - error from a previous attempt: http2: client connection lost" +4:08PM ERR ClusterUpdater failed error="conn check failed (2/5)" +4:08PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable - error from a previous attempt: http2: client connection lost" +4:08PM ERR ClusterUpdater failed error="conn check failed (2/5)" +5:37PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +5:37PM ERR ClusterUpdater failed error="conn check failed (3/5)" +5:37PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp 34.208.107.194:443: connect: network is unreachable" +5:37PM ERR ClusterUpdater failed error="conn check failed (3/5)" +5:37PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +5:37PM ERR ClusterUpdater failed error="conn check failed (4/5)" +5:37PM WRN namespace validation failed for: "vdp" error="user not authorized to list all namespaces" +5:37PM WRN namespace validation failed for: "cp1-ns" error="user not authorized to list all namespaces" +5:37PM WRN namespace validation failed for: "msg-qa" error="user not authorized to list all namespaces" +5:37PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +5:37PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +5:37PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +5:37PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +5:37PM WRN namespace validation failed for: "vbmdp" error="user not authorized to list all namespaces" +5:37PM WRN namespace validation failed for: "nperf12-my-ns" error="user not authorized to list all namespaces" +5:37PM WRN namespace validation failed for: "cp1-ns" error="user not authorized to list all namespaces" +5:37PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +5:37PM WRN namespace validation failed for: "nperf15-my-ns" error="user not authorized to list all namespaces" +5:37PM WRN namespace validation failed for: "nperf15-my-ns" error="user not authorized to list all namespaces" +5:37PM WRN namespace validation failed for: "nperf15-my-ns" error="user not authorized to list all namespaces" +5:37PM WRN namespace validation failed for: "nperf15-my-ns" error="user not authorized to list all namespaces" +5:49PM WRN log-reader canceled error="stream canceled read tcp 192.168.1.110:60034->34.208.107.194:443: read: connection reset by peer for elastic-system/dp-config-es-es-default-0 (elasticsearch)" +3:00AM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +3:00AM ERR ClusterUpdater failed error="conn check failed (1/5)" +5:50AM WRN log-reader canceled error="stream canceled read tcp 192.168.1.110:62609->34.208.107.194:443: read: connection reset by peer for elastic-system/dp-config-es-es-default-0 (elasticsearch)" +8:31AM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +8:31AM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:40AM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-es-default-0 (elasticsearch)" +8:40AM WRN log-reader EOF error="stream closed EOF for elastic-system/dp-config-es-eck-custom-resources-operator-5d887858f6-s8gb7 (eck-custom-resources-operator)" +8:41AM WRN log-reader EOF error="stream closed EOF for elastic-system/dp-config-es-eck-custom-resources-operator-5d887858f6-s8gb7 (eck-custom-resources-operator)" +8:42AM WRN log-reader EOF error="stream closed EOF for elastic-system/dp-config-es-eck-custom-resources-operator-5d887858f6-s8gb7 (eck-custom-resources-operator)" +8:42AM WRN log-reader EOF error="stream closed EOF for elastic-system/dp-config-es-eck-custom-resources-operator-5d887858f6-s8gb7 (eck-custom-resources-operator)" +9:05AM WRN log-reader EOF error="stream closed EOF for elastic-system/dp-config-es-eck-custom-resources-operator-5d887858f6-s8gb7 (eck-custom-resources-operator)" +9:23AM INF 🐶 K9s starting up... +9:23AM INF ✅ Kubernetes connectivity +9:23AM WRN log-reader EOF error="stream closed EOF for nperf12-my-ns/tp-tibtunnel-dbc9bfdd8-fswxv (tibtunnel)" +11:05AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +11:05AM ERR ClusterUpdater failed error="conn check failed (1/5)" +11:05AM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +11:05AM ERR ClusterUpdater failed error="conn check failed (1/5)" +11:05AM WRN log-reader EOF error="stream closed EOF for elastic-system/dp-config-es-eck-custom-resources-operator-5d887858f6-s8gb7 (eck-custom-resources-operator)" +2:00PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +2:00PM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:00PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +2:00PM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:00PM WRN log-reader EOF error="stream closed EOF for elastic-system/dp-config-es-eck-custom-resources-operator-5d887858f6-s8gb7 (eck-custom-resources-operator)" +2:06PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +2:06PM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:06PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +2:06PM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:06PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +2:06PM ERR ClusterUpdater failed error="conn check failed (2/5)" +2:06PM WRN log-reader EOF error="stream closed EOF for elastic-system/dp-config-es-eck-custom-resources-operator-5d887858f6-s8gb7 (eck-custom-resources-operator)" +2:35PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +2:35PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +2:35PM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:35PM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:35PM WRN log-reader EOF error="stream closed EOF for elastic-system/dp-config-es-eck-custom-resources-operator-5d887858f6-s8gb7 (eck-custom-resources-operator)" +2:37PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +2:37PM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:37PM WRN log-reader EOF error="stream closed EOF for elastic-system/dp-config-es-eck-custom-resources-operator-5d887858f6-s8gb7 (eck-custom-resources-operator)" +2:40PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +2:40PM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:42PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +2:42PM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:42PM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-eck-custom-resources-operator-5d887858f6-s8gb7 (eck-custom-resources-operator)" +2:43PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +2:43PM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:43PM WRN log-reader EOF error="stream closed EOF for elastic-system/dp-config-es-eck-custom-resources-operator-5d887858f6-s8gb7 (eck-custom-resources-operator)" +2:46PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +2:46PM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:47PM WRN log-reader EOF error="stream closed EOF for elastic-system/dp-config-es-eck-custom-resources-operator-5d887858f6-s8gb7 (eck-custom-resources-operator)" +4:03PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +4:03PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:03PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +4:03PM ERR ClusterUpdater failed error="conn check failed (1/5)" +5:09PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp: lookup BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com: no such host" +5:09PM ERR ClusterUpdater failed error="conn check failed (2/5)" +5:09PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)" +5:09PM ERR ClusterUpdater failed error="conn check failed (2/5)" +5:19PM WRN log-reader EOF error="stream closed EOF for elastic-system/dp-config-es-eck-custom-resources-operator-5d887858f6-s8gb7 (eck-custom-resources-operator)" +5:23PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)" +5:23PM ERR ClusterUpdater failed error="conn check failed (3/5)" +5:23PM WRN namespace validation failed for: "matt-dp" error="user not authorized to list all namespaces" +5:23PM WRN namespace validation failed for: "msg-qa" error="user not authorized to list all namespaces" +5:23PM WRN namespace validation failed for: "nperf12-my-ns" error="user not authorized to list all namespaces" +5:23PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +5:23PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +5:23PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +5:23PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +5:23PM WRN namespace validation failed for: "vdp" error="user not authorized to list all namespaces" +5:23PM WRN namespace validation failed for: "cp1-ns" error="user not authorized to list all namespaces" +5:23PM WRN namespace validation failed for: "msg-qa" error="user not authorized to list all namespaces" +5:23PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +5:23PM WRN namespace validation failed for: "nperf15-my-ns" error="user not authorized to list all namespaces" +5:23PM WRN namespace validation failed for: "nperf15-my-ns" error="user not authorized to list all namespaces" +5:23PM WRN namespace validation failed for: "nperf15-my-ns" error="user not authorized to list all namespaces" +5:23PM WRN namespace validation failed for: "nperf15-my-ns" error="user not authorized to list all namespaces" +6:45PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +6:45PM ERR ClusterUpdater failed error="conn check failed (1/5)" +7:21PM WRN log-reader EOF error="stream closed EOF for elastic-system/dp-config-es-eck-custom-resources-operator-5d887858f6-s8gb7 (eck-custom-resources-operator)" +8:21PM WRN  Dial Failed! error="Post \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": read tcp 192.168.1.110:56303->34.208.107.194:443: read: connection reset by peer" +8:34AM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": read tcp 192.168.1.110:58035->34.208.107.194:443: read: operation timed out" +8:34AM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:35AM WRN log-reader EOF error="stream closed EOF for elastic-system/dp-config-es-eck-custom-resources-operator-5d887858f6-s8gb7 (eck-custom-resources-operator)" +8:38AM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +8:38AM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:38AM WRN log-reader EOF error="stream closed EOF for elastic-system/dp-config-es-eck-custom-resources-operator-5d887858f6-s8gb7 (eck-custom-resources-operator)" +11:11AM INF 🐶 K9s starting up... +11:11AM INF ✅ Kubernetes connectivity +11:11AM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-ipuvc8el-uninstall-wsct" +11:11AM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-0i1js4c8-uninstall-qmm8" +11:11AM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-q4ycm2gk-uninstall-fr0y" +11:11AM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-qpfffgvz-uninstall-gevz" +11:11AM ERR Delete failed with `jobs.batch "cp-auto-ems-qpfffgvz-uninstall-gevz" not found error="jobs.batch \"cp-auto-ems-qpfffgvz-uninstall-gevz\" not found" +11:11AM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-kmf7qlk1-uninstall-9zug" +11:11AM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-yjs1yd9m-uninstall-bkf3" +11:11AM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-7ixj055p-uninstall-gch3" +11:11AM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-one-uninstall-f4bm" +11:11AM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-one-uninstall-fzxo" +11:34AM INF 🐶 K9s starting up... +11:34AM INF ✅ Kubernetes connectivity +11:40AM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/emsuibmdpbht-3564-t6tpp (run-test)" +11:40AM ERR Command failed error="exit status 137" +11:40AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-3564-t6tpp -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +11:40AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:44PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +1:44PM ERR ClusterUpdater failed error="conn check failed (1/5)" +1:44PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +1:44PM ERR ClusterUpdater failed error="conn check failed (1/5)" +1:45PM WRN log-reader EOF error="stream closed EOF for elastic-system/dp-config-es-eck-custom-resources-operator-5d887858f6-s8gb7 (eck-custom-resources-operator)" +2:20PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +2:20PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:17PM WRN  Dial Failed! error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": context deadline exceeded" +3:17PM ERR refresh failed for gvr: v1/pods error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": context deadline exceeded" +3:17PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +3:17PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +3:17PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +3:17PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +3:17PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +3:17PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +3:17PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:17PM WRN reconciler exited error="context canceled" +4:04PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +4:04PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:04PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +4:04PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:04PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp: lookup BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com: no such host - error from a previous attempt: http2: client connection lost" +4:04PM ERR ClusterUpdater failed error="conn check failed (2/5)" +4:06PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +4:06PM ERR ClusterUpdater failed error="conn check failed (2/5)" +4:07PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp: lookup BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com: no such host" +4:07PM ERR ClusterUpdater failed error="conn check failed (3/5)" +4:07PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +4:07PM ERR ClusterUpdater failed error="conn check failed (3/5)" +5:32PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +5:32PM ERR ClusterUpdater failed error="conn check failed (4/5)" +5:32PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +5:32PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +5:32PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp: lookup BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com: no such host" +5:32PM ERR ClusterUpdater failed error="conn check failed (4/5)" +5:32PM WRN namespace validation failed for: "elastic-system" error="user not authorized to list all namespaces" +5:32PM WRN namespace validation failed for: "elastic-system" error="user not authorized to list all namespaces" +9:05AM INF 🐶 K9s starting up... +9:05AM INF ✅ Kubernetes connectivity +9:06AM WRN log-reader canceled error="stream canceled context canceled for elastic-system/dp-config-es-es-default-0 (elasticsearch)" +9:19AM INF 🐶 K9s starting up... +9:19AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +9:19AM INF ✅ Kubernetes connectivity +9:22AM ERR no port-forward defined +2:16PM INF 🐶 K9s starting up... +2:16PM ERR config refine failed error="unable to activate context \"\": getcontext - invalid context specified: \"\"" +2:16PM ERR Fail to locate metrics-server error="Get \"http://localhost:8080/api\": dial tcp [::1]:8080: connect: connection refused" +2:16PM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp [::1]:8080: connect: connection refused" +2:16PM INF ✅ Kubernetes connectivity +2:16PM WRN Save failed. no active config detected +2:16PM ERR Fail to load global/context configuration error="unable to activate context \"\": getcontext - invalid context specified: \"\"\nGet \"http://localhost:8080/api\": dial tcp [::1]:8080: connect: connection refused\ncannot connect to context: \nk8s connection failed for context: " +2:16PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +2:16PM ERR Load cluster resources - No API server connection +2:16PM ERR failed to list contexts error="no connection" +2:16PM WRN Unable to dial discovery API error="no connection to dial" +2:16PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +2:16PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +2:16PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +2:16PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +2:16PM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp [::1]:8080: connect: connection refused" +2:16PM ERR Load cluster resources - No API server connection +2:16PM WRN Unable to dial discovery API error="no connection to dial" +2:16PM WRN Plugins load failed: getcontext - invalid context specified: "" +2:16PM WRN Plugins load failed: getcontext - invalid context specified: "" +2:16PM WRN Save failed. no active config detected +2:16PM ERR nuking k9s shell pod error="getcontext - invalid context specified: \"\"" +2:16PM WRN Save failed. no active config detected +2:55PM ERR can't connect to cluster error="Get \"https://10.97.130.124:6443/version?timeout=15s\": context deadline exceeded" +2:55PM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:01PM ERR can't connect to cluster error="Get \"https://10.97.130.124:6443/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +8:01PM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:01PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +8:01PM ERR ClusterUpdater failed error="conn check failed (1/5)" +10:02PM ERR can't connect to cluster error="Get \"https://10.97.130.124:6443/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +10:02PM ERR ClusterUpdater failed error="conn check failed (1/5)" +10:02PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +10:02PM ERR ClusterUpdater failed error="conn check failed (1/5)" +11:03PM ERR can't connect to cluster error="Get \"https://10.97.130.124:6443/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +11:03PM ERR ClusterUpdater failed error="conn check failed (1/5)" +11:03PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +11:03PM ERR ClusterUpdater failed error="conn check failed (1/5)" +11:03PM ERR refresh failed for gvr: containers error="failed to locate pod \"elastic-system/dp-config-es-es-default-0\": ACCESS -- No API server connection" +11:03PM WRN reconciler exited error="context canceled" +1:00AM WRN  Dial Failed! error="Post \"https://10.97.130.124:6443/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": read tcp 10.123.230.38:51756->10.97.130.124:6443: read: connection reset by peer" +1:00AM ERR refresh failed for gvr: v1/pods error="Post \"https://10.97.130.124:6443/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": read tcp 10.123.230.38:51756->10.97.130.124:6443: read: connection reset by peer" +1:00AM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"\":\"v1/pods\"" +1:00AM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"\":\"v1/pods\"" +1:00AM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"\":\"v1/pods\"" +1:00AM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"\":\"v1/pods\"" +1:00AM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"\":\"v1/pods\"" +1:00AM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"\":\"v1/pods\"" +1:00AM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"\":\"v1/pods\"" +1:00AM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"\":\"v1/pods\"" +1:00AM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"\":\"v1/pods\"" +1:00AM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"\":\"v1/pods\"" +1:01AM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"\":\"v1/pods\"" +1:01AM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"\":\"v1/pods\"" +1:02AM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"\":\"v1/pods\"" +1:02AM WRN reconciler exited error="[list] access denied on resource \"\":\"v1/pods\"" +1:02AM ERR [list] access denied on resource "":"v1/pods" +1:05AM ERR can't connect to cluster error="Get \"https://10.97.130.124:6443/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +1:05AM ERR ClusterUpdater failed error="conn check failed (1/5)" +1:05AM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +1:05AM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:07AM ERR can't connect to cluster error="Get \"https://10.97.130.124:6443/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +3:07AM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:07AM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +3:07AM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:07AM ERR refresh failed for gvr: containers error="failed to locate pod \"elastic-system/dp-config-es-es-default-0\": ACCESS -- No API server connection" +3:07AM WRN reconciler exited error="context canceled" +4:08AM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +4:08AM ERR ClusterUpdater failed error="conn check failed (1/5)" +7:10AM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +7:10AM ERR ClusterUpdater failed error="conn check failed (1/5)" +7:10AM ERR can't connect to cluster error="Get \"https://10.97.130.124:6443/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +7:10AM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:11AM ERR can't connect to cluster error="Get \"https://10.97.130.124:6443/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +8:11AM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:11AM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +8:11AM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:38AM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +8:38AM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:38AM ERR refresh failed for gvr: containers error="failed to locate pod \"elastic-system/dp-config-es-es-default-0\": ACCESS -- No API server connection" +8:38AM WRN reconciler exited error="context canceled" +8:55AM ERR can't connect to cluster error="Get \"https://10.97.130.124:6443/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +8:55AM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:55AM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +8:55AM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:59AM ERR can't connect to cluster error="Get \"https://10.97.130.124:6443/version?timeout=15s\": context deadline exceeded" +8:59AM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:59AM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +8:59AM ERR ClusterUpdater failed error="conn check failed (1/5)" +10:39AM ERR can't connect to cluster error="Get \"https://10.97.130.124:6443/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +10:39AM ERR ClusterUpdater failed error="conn check failed (1/5)" +10:46AM ERR can't connect to cluster error="Get \"https://10.97.130.124:6443/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +10:46AM ERR ClusterUpdater failed error="conn check failed (1/5)" +12:02PM INF 🐶 K9s starting up... +12:02PM INF ✅ Kubernetes connectivity +12:28PM ERR Watcher failed for containers -- failed to locate pod "cp-automation-dp/emsuibht-23430-m2q29": pods "emsuibht-23430-m2q29" not found error="failed to locate pod \"cp-automation-dp/emsuibht-23430-m2q29\": pods \"emsuibht-23430-m2q29\" not found" +12:36PM ERR cp-automation-dp/cp-auto-ems-ddvzks0k-uninstall-xoxo-d6qrc is not in a running state +12:36PM WRN log-reader EOF error="stream closed EOF for cp-automation-dp/cp-auto-ems-ddvzks0k-uninstall-xoxo-d6qrc (main)" +12:44PM ERR Command failed error="exit status 137" +12:44PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-23630-dxdht -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +12:44PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:00PM ERR can't connect to cluster error="Get \"https://10.97.130.124:6443/version?timeout=15s\": context deadline exceeded" +1:00PM ERR ClusterUpdater failed error="conn check failed (1/5)" +1:00PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +1:00PM ERR ClusterUpdater failed error="conn check failed (1/5)" +1:02PM ERR can't connect to cluster error="Get \"https://10.97.130.124:6443/version?timeout=15s\": context deadline exceeded" +1:02PM ERR ClusterUpdater failed error="conn check failed (1/5)" +1:03PM ERR Command failed error="exit status 137" +1:03PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-7435-d9l7k -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:03PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:09PM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-fdqazspb-uninstall-na94" +1:09PM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-ddvzks0k-uninstall-xoxo" +1:10PM ERR Command failed error="exit status 130" +1:10PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-12750-xvslh -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:10PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:18PM ERR Command failed error="exit status 137" +1:18PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-9967-g9p4c -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:18PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:22PM INF 🐶 K9s starting up... +1:22PM INF ✅ Kubernetes connectivity +1:24PM ERR Command failed error="exit status 130" +1:24PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-24368-8mgs5 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:24PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:24PM WRN log-reader EOF error="stream closed EOF for cp-automation-dp/emsuibht-24368-8mgs5 (run-test)" +1:24PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-24368-8mgs5\": pods \"emsuibht-24368-8mgs5\" not found" +1:24PM ERR Watcher failed for containers -- failed to locate pod "cp-automation-dp/emsuibht-24368-8mgs5": pods "emsuibht-24368-8mgs5" not found error="failed to locate pod \"cp-automation-dp/emsuibht-24368-8mgs5\": pods \"emsuibht-24368-8mgs5\" not found" +1:24PM WRN log-reader EOF error="stream closed EOF for cp-automation-dp/emsuibmdpbht-10688-6l97w (run-test)" +2:01PM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-yafbqeum-uninstall-mceb" +2:01PM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-xy3id2au-uninstall-hvpt" +2:01PM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-l2l3xmx1-uninstall-1emf" +2:06PM ERR Command failed error="exit status 137" +2:06PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-21192-plcfj -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +2:06PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +2:09PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +2:09PM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:20PM ERR can't connect to cluster error="Get \"https://10.97.130.124:6443/version?timeout=15s\": context deadline exceeded" +2:20PM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:20PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +2:20PM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:30PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +2:30PM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:30PM ERR can't connect to cluster error="Get \"https://10.97.130.124:6443/version?timeout=15s\": context deadline exceeded" +2:30PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:04PM ERR Command failed error="exit status 137" +3:04PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-3682-xqt82 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:04PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:04PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-3682-xqt82\": pods \"emsuibht-3682-xqt82\" not found" +3:04PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-3682-xqt82\": pods \"emsuibht-3682-xqt82\" not found" +3:04PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-3682-xqt82\": pods \"emsuibht-3682-xqt82\" not found" +3:04PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-3682-xqt82\": pods \"emsuibht-3682-xqt82\" not found" +3:04PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-3682-xqt82\": pods \"emsuibht-3682-xqt82\" not found" +3:04PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-3682-xqt82\": pods \"emsuibht-3682-xqt82\" not found" +3:04PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-3682-xqt82\": pods \"emsuibht-3682-xqt82\" not found" +3:04PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-3682-xqt82\": pods \"emsuibht-3682-xqt82\" not found" +3:04PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-3682-xqt82\": pods \"emsuibht-3682-xqt82\" not found" +3:04PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-3682-xqt82\": pods \"emsuibht-3682-xqt82\" not found" +3:05PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-3682-xqt82\": pods \"emsuibht-3682-xqt82\" not found" +3:16PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-3682-xqt82\": pods \"emsuibht-3682-xqt82\" not found" +3:16PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +3:16PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:16PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-3682-xqt82\": ACCESS -- No API server connection" +3:16PM WRN reconciler exited error="context canceled" +3:16PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-3682-xqt82\": pods \"emsuibht-3682-xqt82\" not found" +3:16PM ERR Watcher failed for containers -- failed to locate pod "cp-automation-dp/emsuibht-3682-xqt82": pods "emsuibht-3682-xqt82" not found error="failed to locate pod \"cp-automation-dp/emsuibht-3682-xqt82\": pods \"emsuibht-3682-xqt82\" not found" +3:30PM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/emsuibht-31145-vgq4p (run-test)" +3:33PM ERR Command failed error="exit status 137" +3:33PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-31145-vgq4p -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:33PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:34PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-31145-vgq4p\": pods \"emsuibht-31145-vgq4p\" not found" +3:34PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-31145-vgq4p\": pods \"emsuibht-31145-vgq4p\" not found" +3:34PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-31145-vgq4p\": pods \"emsuibht-31145-vgq4p\" not found" +3:34PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-31145-vgq4p\": pods \"emsuibht-31145-vgq4p\" not found" +3:34PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-31145-vgq4p\": pods \"emsuibht-31145-vgq4p\" not found" +3:34PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-31145-vgq4p\": pods \"emsuibht-31145-vgq4p\" not found" +3:34PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-31145-vgq4p\": pods \"emsuibht-31145-vgq4p\" not found" +3:34PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-31145-vgq4p\": pods \"emsuibht-31145-vgq4p\" not found" +3:34PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-31145-vgq4p\": pods \"emsuibht-31145-vgq4p\" not found" +3:34PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-31145-vgq4p\": pods \"emsuibht-31145-vgq4p\" not found" +3:34PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-31145-vgq4p\": pods \"emsuibht-31145-vgq4p\" not found" +3:34PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-31145-vgq4p\": pods \"emsuibht-31145-vgq4p\" not found" +3:35PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-31145-vgq4p\": pods \"emsuibht-31145-vgq4p\" not found" +3:35PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-31145-vgq4p\": pods \"emsuibht-31145-vgq4p\" not found" +3:35PM WRN reconciler exited error="failed to locate pod \"cp-automation-dp/emsuibht-31145-vgq4p\": pods \"emsuibht-31145-vgq4p\" not found" +3:35PM ERR failed to locate pod "cp-automation-dp/emsuibht-31145-vgq4p": pods "emsuibht-31145-vgq4p" not found +3:57PM INF 🐶 K9s starting up... +3:57PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +3:57PM INF ✅ Kubernetes connectivity +4:13PM ERR can't connect to cluster error="Get \"https://10.97.130.124:6443/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +4:13PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:13PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +4:13PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:13PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +4:13PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:13PM ERR refresh failed for gvr: containers error="failed to locate pod \"elastic-system/dp-config-es-es-default-0\": ACCESS -- No API server connection" +4:13PM WRN reconciler exited error="context canceled" +4:14PM ERR can't connect to cluster error="Get \"https://10.97.130.124:6443/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +4:14PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:36PM ERR can't connect to cluster error="Get \"https://10.97.130.124:6443/version?timeout=15s\": dial tcp 10.97.130.124:6443: connect: network is unreachable - error from a previous attempt: http2: client connection lost" +4:36PM ERR ClusterUpdater failed error="conn check failed (2/5)" +4:36PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp: lookup BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com: no such host" +4:36PM ERR ClusterUpdater failed error="conn check failed (2/5)" +4:36PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +4:36PM ERR ClusterUpdater failed error="conn check failed (2/5)" +4:36PM ERR can't connect to cluster error="Get \"https://10.97.130.124:6443/version?timeout=15s\": dial tcp 10.97.130.124:6443: connect: network is unreachable" +4:36PM ERR ClusterUpdater failed error="conn check failed (2/5)" +5:28PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp: lookup BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com: no such host" +5:28PM ERR ClusterUpdater failed error="conn check failed (3/5)" +5:28PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +5:28PM ERR ClusterUpdater failed error="conn check failed (3/5)" +5:28PM ERR can't connect to cluster error="Get \"https://10.97.130.124:6443/version?timeout=15s\": dial tcp 10.97.130.124:6443: connect: network is unreachable" +5:28PM ERR ClusterUpdater failed error="conn check failed (3/5)" +5:28PM ERR can't connect to cluster error="Get \"https://10.97.130.124:6443/version?timeout=15s\": net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)" +5:28PM ERR ClusterUpdater failed error="conn check failed (3/5)" +5:28PM ERR can't connect to cluster error="Get \"https://10.97.130.124:6443/version?timeout=15s\": net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)" +5:28PM ERR ClusterUpdater failed error="conn check failed (4/5)" +5:28PM WRN namespace validation failed for: "jk-msgdp" error="user not authorized to list all namespaces" +5:28PM WRN namespace validation failed for: "vbmdp" error="user not authorized to list all namespaces" +5:28PM WRN namespace validation failed for: "nperf12-my-ns" error="user not authorized to list all namespaces" +5:28PM WRN namespace validation failed for: "cp1-ns" error="user not authorized to list all namespaces" +5:28PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +5:28PM WRN namespace validation failed for: "nperf15-my-ns" error="user not authorized to list all namespaces" +5:28PM WRN namespace validation failed for: "nperf15-my-ns" error="user not authorized to list all namespaces" +5:28PM WRN namespace validation failed for: "nperf15-my-ns" error="user not authorized to list all namespaces" +5:28PM WRN namespace validation failed for: "nperf15-my-ns" error="user not authorized to list all namespaces" +5:30PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +5:30PM ERR ClusterUpdater failed error="conn check failed (4/5)" +5:30PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +5:30PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +5:31PM ERR can't connect to cluster error="Get \"https://10.97.130.124:6443/version?timeout=15s\": net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)" +5:31PM ERR ClusterUpdater failed error="conn check failed (4/5)" +5:31PM WRN namespace validation failed for: "jk-msgdp" error="user not authorized to list all namespaces" +5:31PM WRN namespace validation failed for: "vbmdp" error="user not authorized to list all namespaces" +5:31PM WRN namespace validation failed for: "nperf12-my-ns" error="user not authorized to list all namespaces" +5:31PM WRN namespace validation failed for: "cp1-ns" error="user not authorized to list all namespaces" +5:31PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +5:31PM WRN namespace validation failed for: "nperf15-my-ns" error="user not authorized to list all namespaces" +5:31PM WRN namespace validation failed for: "nperf15-my-ns" error="user not authorized to list all namespaces" +5:31PM WRN namespace validation failed for: "nperf15-my-ns" error="user not authorized to list all namespaces" +5:31PM WRN namespace validation failed for: "nperf15-my-ns" error="user not authorized to list all namespaces" +5:31PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +5:31PM ERR ClusterUpdater failed error="conn check failed (4/5)" +5:31PM WRN namespace validation failed for: "elastic-system" error="user not authorized to list all namespaces" +5:31PM WRN namespace validation failed for: "elastic-system" error="user not authorized to list all namespaces" +1:56PM INF 🐶 K9s starting up... +1:56PM ERR config refine failed error="unable to activate context \"\": getcontext - invalid context specified: \"\"" +1:56PM ERR Fail to locate metrics-server error="Get \"http://localhost:8080/api\": dial tcp [::1]:8080: connect: connection refused" +1:56PM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp [::1]:8080: connect: connection refused" +1:56PM INF ✅ Kubernetes connectivity +1:56PM WRN Save failed. no active config detected +1:56PM ERR Fail to load global/context configuration error="unable to activate context \"\": getcontext - invalid context specified: \"\"\nGet \"http://localhost:8080/api\": dial tcp [::1]:8080: connect: connection refused\ncannot connect to context: \nk8s connection failed for context: " +1:56PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +1:56PM ERR Load cluster resources - No API server connection +1:56PM ERR failed to list contexts error="no connection" +1:56PM WRN Unable to dial discovery API error="no connection to dial" +1:56PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +1:56PM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp [::1]:8080: connect: connection refused" +1:56PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +1:56PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +1:56PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +1:56PM WRN Unable to dial discovery API error="no connection to dial" +1:56PM ERR Load cluster resources - No API server connection +1:56PM WRN Plugins load failed: getcontext - invalid context specified: "" +1:56PM WRN Plugins load failed: getcontext - invalid context specified: "" +1:56PM WRN Plugins load failed: getcontext - invalid context specified: "" +1:56PM WRN Plugins load failed: getcontext - invalid context specified: "" +9:02AM INF 🐶 K9s starting up... +9:02AM INF ✅ Kubernetes connectivity +9:03AM ERR no port-forward defined +9:03AM ERR no port-forward defined +11:41AM INF 🐶 K9s starting up... +11:41AM ERR config refine failed error="unable to activate context \"\": getcontext - invalid context specified: \"\"" +11:41AM ERR Fail to locate metrics-server error="Get \"http://localhost:8080/api\": dial tcp [::1]:8080: connect: connection refused" +11:41AM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp [::1]:8080: connect: connection refused" +11:41AM INF ✅ Kubernetes connectivity +11:41AM WRN Save failed. no active config detected +11:41AM ERR Fail to load global/context configuration error="unable to activate context \"\": getcontext - invalid context specified: \"\"\nGet \"http://localhost:8080/api\": dial tcp [::1]:8080: connect: connection refused\ncannot connect to context: \nk8s connection failed for context: " +11:41AM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +11:41AM ERR Load cluster resources - No API server connection +11:41AM ERR failed to list contexts error="no connection" +11:41AM WRN Unable to dial discovery API error="no connection to dial" +11:41AM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp [::1]:8080: connect: connection refused" +11:41AM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +11:41AM ERR Load cluster resources - No API server connection +11:41AM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +11:41AM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +11:41AM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +11:41AM WRN Unable to dial discovery API error="no connection to dial" +11:41AM WRN Plugins load failed: getcontext - invalid context specified: "" +11:41AM WRN Plugins load failed: getcontext - invalid context specified: "" +11:41AM WRN Save failed. no active config detected +11:41AM ERR nuking k9s shell pod error="getcontext - invalid context specified: \"\"" +11:41AM WRN Save failed. no active config detected +2:32PM INF 🐶 K9s starting up... +2:32PM ERR Fail to locate metrics-server error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/api\": dial tcp 10.97.130.64:443: connect: connection refused" +2:32PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: connection refused" +2:32PM INF ✅ Kubernetes connectivity +2:32PM WRN namespace validation failed for: "msg-qa" error="user not authorized to list all namespaces" +2:32PM ERR Fail to load global/context configuration error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/api\": dial tcp 10.97.130.64:443: connect: connection refused\ncannot connect to context: kubernetes-admin@kubernetes\nk8s connection failed for context: kubernetes-admin@kubernetes" +2:32PM ERR Load cluster resources - No API server connection +2:32PM ERR failed to list contexts error="no connection" +2:32PM WRN Unable to dial discovery API error="no connection to dial" +2:32PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: connection refused" +2:32PM ERR Load cluster resources - No API server connection +2:32PM WRN Unable to dial discovery API error="no connection to dial" +2:32PM WRN namespace validation failed for: "msg-qa" error="user not authorized to list all namespaces" +2:32PM WRN namespace validation failed for: "msg-qa" error="user not authorized to list all namespaces" +2:32PM INF 🐶 K9s starting up... +2:32PM ERR Fail to locate metrics-server error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/api\": dial tcp 10.97.130.64:443: connect: connection refused" +2:32PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: connection refused" +2:32PM INF ✅ Kubernetes connectivity +2:32PM WRN namespace validation failed for: "msg-qa" error="user not authorized to list all namespaces" +2:32PM ERR Fail to load global/context configuration error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/api\": dial tcp 10.97.130.64:443: connect: connection refused\ncannot connect to context: kubernetes-admin@kubernetes\nk8s connection failed for context: kubernetes-admin@kubernetes" +2:32PM ERR Load cluster resources - No API server connection +2:32PM ERR failed to list contexts error="no connection" +2:32PM WRN Unable to dial discovery API error="no connection to dial" +2:32PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: connection refused" +2:32PM ERR Load cluster resources - No API server connection +2:32PM WRN Unable to dial discovery API error="no connection to dial" +2:32PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: connection refused" +2:32PM WRN  Dial Failed! error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 10.97.130.64:443: connect: connection refused" +2:32PM WRN namespace validation failed for: "msg-qa" error="user not authorized to list all namespaces" +2:32PM WRN namespace validation failed for: "msg-qa" error="user not authorized to list all namespaces" +2:32PM WRN Unable to validate namespace: "msg-qa". Using "msg-qa" as active namespace +2:32PM WRN namespace validation failed for: "msg-qa" error="user not authorized to list all namespaces" +2:32PM WRN  Dial Failed! error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 10.97.130.64:443: connect: connection refused" +2:32PM WRN Fail CRDs load error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 10.97.130.64:443: connect: connection refused" +2:32PM WRN  Dial Failed! error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 10.97.130.64:443: connect: connection refused" +2:32PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: connection refused" +2:32PM ERR Cluster updater failed! error="conn check failed (1/5)" +2:32PM WRN Unable to dial discovery API error="no connection to dial" +2:32PM WRN namespace validation failed for: "msg-qa" error="user not authorized to list all namespaces" +2:32PM WRN namespace validation failed for: "msg-qa" error="user not authorized to list all namespaces" +2:55PM INF 🐶 K9s starting up... +2:55PM INF 🐶 K9s starting up... +2:55PM INF 🐶 K9s starting up... +2:55PM INF ✅ Kubernetes connectivity +2:56PM INF 🐶 K9s starting up... +2:56PM ERR Fail to locate metrics-server error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/api\": EOF" +2:56PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": EOF" +2:56PM INF ✅ Kubernetes connectivity +2:56PM WRN namespace validation failed for: "msg-qa" error="user not authorized to list all namespaces" +2:56PM ERR Fail to load global/context configuration error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/api\": EOF\ncannot connect to context: kubernetes-admin@kubernetes\nk8s connection failed for context: kubernetes-admin@kubernetes" +2:56PM ERR Load cluster resources - No API server connection +2:56PM ERR failed to list contexts error="no connection" +2:56PM WRN Unable to dial discovery API error="no connection to dial" +2:56PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": EOF" +2:56PM ERR Load cluster resources - No API server connection +2:56PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": EOF" +2:56PM WRN  Dial Failed! error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": EOF" +2:56PM WRN namespace validation failed for: "msg-qa" error="user not authorized to list all namespaces" +2:56PM WRN namespace validation failed for: "msg-qa" error="user not authorized to list all namespaces" +2:56PM WRN Unable to validate namespace: "msg-qa". Using "msg-qa" as active namespace +2:56PM WRN namespace validation failed for: "msg-qa" error="user not authorized to list all namespaces" +2:56PM WRN  Dial Failed! error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": EOF" +2:56PM WRN Fail CRDs load error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": EOF" +2:56PM WRN  Dial Failed! error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": EOF" +2:57PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": EOF" +2:57PM ERR Cluster updater failed! error="conn check failed (1/5)" +2:57PM WRN Unable to dial discovery API error="no connection to dial" +3:00PM INF 🐶 K9s starting up... +3:00PM ERR Fail to locate metrics-server error="Get \"https://vc-rv.kubeconfig.emsapp4.na.tibco.com/api\": EOF" +3:00PM ERR can't connect to cluster error="Get \"https://vc-rv.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": EOF" +3:00PM INF ✅ Kubernetes connectivity +3:00PM WRN namespace validation failed for: "vbmdp" error="user not authorized to list all namespaces" +3:00PM ERR Fail to load global/context configuration error="Get \"https://vc-rv.kubeconfig.emsapp4.na.tibco.com/api\": EOF\ncannot connect to context: kubernetes-admin@kubernetes\nk8s connection failed for context: kubernetes-admin@kubernetes" +3:00PM ERR Load cluster resources - No API server connection +3:00PM ERR failed to list contexts error="no connection" +3:00PM WRN Unable to dial discovery API error="no connection to dial" +3:00PM ERR can't connect to cluster error="Get \"https://vc-rv.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": EOF" +3:00PM ERR Load cluster resources - No API server connection +3:00PM WRN Unable to dial discovery API error="no connection to dial" +3:01PM WRN namespace validation failed for: "vbmdp" error="user not authorized to list all namespaces" +3:01PM WRN namespace validation failed for: "vbmdp" error="user not authorized to list all namespaces" +3:06PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": EOF" +3:06PM WRN  Dial Failed! error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": EOF" +3:06PM WRN namespace validation failed for: "vbmdp" error="user not authorized to list all namespaces" +3:06PM WRN namespace validation failed for: "msg-qa" error="user not authorized to list all namespaces" +3:06PM WRN Unable to validate namespace: "msg-qa". Using "msg-qa" as active namespace +3:06PM WRN namespace validation failed for: "msg-qa" error="user not authorized to list all namespaces" +3:06PM WRN  Dial Failed! error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": EOF" +3:06PM WRN Fail CRDs load error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": EOF" +3:07PM WRN  Dial Failed! error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": EOF" +3:07PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": EOF" +3:07PM ERR Cluster updater failed! error="conn check failed (2/5)" +3:44PM INF 🐶 K9s starting up... +3:44PM INF ✅ Kubernetes connectivity +3:45PM WRN log-reader canceled error="stream canceled context canceled for default/msg-vcluster-0 (msg-vcluster)" +3:45PM WRN log-reader canceled error="stream canceled context canceled for default/msg-vcluster-0 (msg-vcluster)" +5:17PM ERR can't connect to cluster error="Get \"https://10.97.130.123:16443/version?timeout=15s\": read tcp 10.123.230.38:60214->10.97.130.123:16443: read: operation timed out" +5:17PM ERR ClusterUpdater failed error="conn check failed (1/5)" +5:17PM ERR can't connect to cluster error="Get \"https://10.97.130.123:16443/version?timeout=15s\": net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)" +5:17PM ERR ClusterUpdater failed error="conn check failed (2/5)" +6:02PM ERR can't connect to cluster error="Get \"https://10.97.130.123:16443/version?timeout=15s\": context deadline exceeded" +6:02PM ERR ClusterUpdater failed error="conn check failed (3/5)" +6:02PM WRN namespace validation failed for: "cert-manager" error="user not authorized to list all namespaces" +6:02PM WRN namespace validation failed for: "cert-manager" error="user not authorized to list all namespaces" +10:50AM INF 🐶 K9s starting up... +10:50AM ERR Fail to locate metrics-server error="Get \"https://vc-msgdp-2.kubeconfig.emsapp4.na.tibco.com/api\": dial tcp: lookup vc-msgdp-2.kubeconfig.emsapp4.na.tibco.com: no such host" +10:50AM ERR can't connect to cluster error="Get \"https://vc-msgdp-2.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp: lookup vc-msgdp-2.kubeconfig.emsapp4.na.tibco.com: no such host" +10:50AM INF ✅ Kubernetes connectivity +10:50AM WRN namespace validation failed for: "msg-qa" error="user not authorized to list all namespaces" +10:50AM ERR Fail to load global/context configuration error="Get \"https://vc-msgdp-2.kubeconfig.emsapp4.na.tibco.com/api\": dial tcp: lookup vc-msgdp-2.kubeconfig.emsapp4.na.tibco.com: no such host\ncannot connect to context: kubernetes-admin@kubernetes\nk8s connection failed for context: kubernetes-admin@kubernetes" +10:50AM ERR Load cluster resources - No API server connection +10:50AM ERR failed to list contexts error="no connection" +10:50AM WRN Unable to dial discovery API error="no connection to dial" +10:50AM ERR can't connect to cluster error="Get \"https://vc-msgdp-2.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp: lookup vc-msgdp-2.kubeconfig.emsapp4.na.tibco.com: no such host" +10:50AM ERR Load cluster resources - No API server connection +10:50AM WRN Unable to dial discovery API error="no connection to dial" +10:51AM ERR can't connect to cluster error="Get \"https://vc-msgdp-2.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp: lookup vc-msgdp-2.kubeconfig.emsapp4.na.tibco.com: no such host" +10:51AM ERR ClusterUpdater failed error="conn check failed (1/5)" +10:51AM ERR can't connect to cluster error="Get \"https://vc-msgdp-2.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp: lookup vc-msgdp-2.kubeconfig.emsapp4.na.tibco.com: no such host" +10:51AM ERR ClusterUpdater failed error="conn check failed (2/5)" +10:51AM ERR can't connect to cluster error="Get \"https://vc-msgdp-2.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp: lookup vc-msgdp-2.kubeconfig.emsapp4.na.tibco.com: no such host" +10:51AM ERR ClusterUpdater failed error="conn check failed (3/5)" +10:51AM ERR can't connect to cluster error="Get \"https://vc-msgdp-2.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp: lookup vc-msgdp-2.kubeconfig.emsapp4.na.tibco.com: no such host" +10:51AM ERR ClusterUpdater failed error="conn check failed (4/5)" +10:51AM ERR can't connect to cluster error="Get \"https://vc-msgdp-2.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp: lookup vc-msgdp-2.kubeconfig.emsapp4.na.tibco.com: no such host" +10:51AM ERR Conn check failed (5/5). Bailing out! +10:51AM WRN namespace validation failed for: "msg-qa" error="user not authorized to list all namespaces" +10:51AM WRN namespace validation failed for: "msg-qa" error="user not authorized to list all namespaces" +1:59PM INF 🐶 K9s starting up... +1:59PM INF ✅ Kubernetes connectivity +1:59PM INF 🐶 K9s starting up... +1:59PM INF ✅ Kubernetes connectivity +1:59PM INF 🐶 K9s starting up... +1:59PM INF ✅ Kubernetes connectivity +1:59PM INF 🐶 K9s starting up... +1:59PM INF ✅ Kubernetes connectivity +2:00PM ERR Command failed error="exit status 137" +2:00PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-18192-6fccw -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +2:00PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +2:13PM ERR Command failed error="exit status 137" +2:13PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-27593-54jd4 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +2:13PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:28PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +3:28PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:08PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +4:08PM ERR ClusterUpdater failed error="conn check failed (1/5)" +5:29PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +5:29PM ERR ClusterUpdater failed error="conn check failed (2/5)" +5:29PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +5:29PM ERR ClusterUpdater failed error="conn check failed (3/5)" +5:29PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +5:29PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +9:13AM INF 🐶 K9s starting up... +9:13AM INF ✅ Kubernetes connectivity +8:50AM INF 🐶 K9s starting up... +8:50AM ERR config refine failed error="unable to activate context \"\": getcontext - invalid context specified: \"\"" +8:50AM ERR Fail to locate metrics-server error="Get \"http://localhost:8080/api\": dial tcp 127.0.0.1:8080: connect: connection refused" +8:50AM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp 127.0.0.1:8080: connect: connection refused" +8:50AM INF ✅ Kubernetes connectivity +8:50AM WRN Save failed. no active config detected +8:50AM ERR Fail to load global/context configuration error="unable to activate context \"\": getcontext - invalid context specified: \"\"\nGet \"http://localhost:8080/api\": dial tcp 127.0.0.1:8080: connect: connection refused\ncannot connect to context: \nk8s connection failed for context: " +8:50AM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +8:50AM ERR Load cluster resources - No API server connection +8:50AM ERR failed to list contexts error="no connection" +8:50AM WRN Unable to dial discovery API error="no connection to dial" +8:50AM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +8:50AM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp 127.0.0.1:8080: connect: connection refused" +8:50AM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +8:50AM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +8:50AM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +8:50AM WRN Unable to dial discovery API error="no connection to dial" +8:50AM ERR Load cluster resources - No API server connection +8:50AM WRN Plugins load failed: getcontext - invalid context specified: "" +8:50AM WRN Plugins load failed: getcontext - invalid context specified: "" +8:50AM WRN Plugins load failed: getcontext - invalid context specified: "" +8:50AM WRN Plugins load failed: getcontext - invalid context specified: "" +9:00AM INF 🐶 K9s starting up... +9:00AM INF ✅ Kubernetes connectivity +10:07AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +10:07AM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:28PM INF 🐶 K9s starting up... +2:28PM INF ✅ Kubernetes connectivity +3:52PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +3:52PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:01PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +4:01PM ERR ClusterUpdater failed error="conn check failed (1/5)" +5:07PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +5:07PM ERR ClusterUpdater failed error="conn check failed (2/5)" +6:01PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)" +6:01PM ERR ClusterUpdater failed error="conn check failed (3/5)" +6:01PM WRN namespace validation failed for: "matt-dp" error="user not authorized to list all namespaces" +6:01PM WRN namespace validation failed for: "msg-qa" error="user not authorized to list all namespaces" +6:01PM WRN namespace validation failed for: "nperf12-my-ns" error="user not authorized to list all namespaces" +6:01PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +6:01PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +6:01PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +6:01PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +6:01PM WRN namespace validation failed for: "vdp" error="user not authorized to list all namespaces" +6:01PM WRN namespace validation failed for: "cp1-ns" error="user not authorized to list all namespaces" +6:01PM WRN namespace validation failed for: "msg-qa" error="user not authorized to list all namespaces" +6:01PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +6:01PM WRN namespace validation failed for: "nperf15-my-ns" error="user not authorized to list all namespaces" +6:01PM WRN namespace validation failed for: "nperf15-my-ns" error="user not authorized to list all namespaces" +6:01PM WRN namespace validation failed for: "nperf15-my-ns" error="user not authorized to list all namespaces" +6:01PM WRN namespace validation failed for: "nperf15-my-ns" error="user not authorized to list all namespaces" +12:40PM INF 🐶 K9s starting up... +12:40PM INF ✅ Kubernetes connectivity +1:17PM INF 🐶 K9s starting up... +1:17PM INF ✅ Kubernetes connectivity +1:19PM INF 🐶 K9s starting up... +1:19PM INF ✅ Kubernetes connectivity +1:32PM INF 🐶 K9s starting up... +1:32PM INF ✅ Kubernetes connectivity +2:11PM INF 🐶 K9s starting up... +2:11PM INF ✅ Kubernetes connectivity +4:04PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +4:04PM ERR ClusterUpdater failed error="conn check failed (1/5)" +5:20PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": read tcp 10.123.230.38:56117->10.97.130.64:443: read: can't assign requested address" +5:20PM ERR ClusterUpdater failed error="conn check failed (2/5)" +6:03PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: operation timed out" +6:03PM ERR ClusterUpdater failed error="conn check failed (3/5)" +7:55PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: operation timed out" +7:55PM ERR ClusterUpdater failed error="conn check failed (4/5)" +7:55PM WRN namespace validation failed for: "cp1-ns" error="user not authorized to list all namespaces" +7:55PM WRN namespace validation failed for: "cp1-ns" error="user not authorized to list all namespaces" +11:10AM INF 🐶 K9s starting up... +11:10AM INF ✅ Kubernetes connectivity +11:10AM WRN log-reader EOF error="stream closed EOF for cp1-ns/tp-cp-pengine-75c7c8c76c-n4xpj (tpcppengineservice)" +11:10AM INF 🐶 K9s starting up... +11:10AM INF ✅ Kubernetes connectivity +11:11AM WRN log-reader EOF error="stream closed EOF for cp1-ns/tp-cp-pengine-75c7c8c76c-n4xpj (tpcppengineservice)" +11:57AM INF 🐶 K9s starting up... +11:57AM INF ✅ Kubernetes connectivity +1:33PM INF 🐶 K9s starting up... +1:33PM INF ✅ Kubernetes connectivity +1:56PM INF 🐶 K9s starting up... +1:56PM ERR config refine failed error="unable to activate context \"\": getcontext - invalid context specified: \"\"" +1:56PM ERR Fail to locate metrics-server error="Get \"http://localhost:8080/api\": dial tcp 127.0.0.1:8080: connect: connection refused" +1:56PM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp 127.0.0.1:8080: connect: connection refused" +1:56PM INF ✅ Kubernetes connectivity +1:56PM WRN Save failed. no active config detected +1:56PM ERR Fail to load global/context configuration error="unable to activate context \"\": getcontext - invalid context specified: \"\"\nGet \"http://localhost:8080/api\": dial tcp 127.0.0.1:8080: connect: connection refused\ncannot connect to context: \nk8s connection failed for context: " +1:56PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +1:56PM ERR Load cluster resources - No API server connection +1:56PM ERR failed to list contexts error="no connection" +1:56PM WRN Unable to dial discovery API error="no connection to dial" +1:56PM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp 127.0.0.1:8080: connect: connection refused" +1:56PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +1:56PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +1:56PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +1:56PM ERR Load cluster resources - No API server connection +1:56PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +1:56PM WRN Unable to dial discovery API error="no connection to dial" +1:56PM WRN Plugins load failed: getcontext - invalid context specified: "" +1:56PM WRN Plugins load failed: getcontext - invalid context specified: "" +1:56PM WRN Plugins load failed: getcontext - invalid context specified: "" +1:56PM WRN Plugins load failed: getcontext - invalid context specified: "" +1:57PM WRN Plugins load failed: getcontext - invalid context specified: "" +1:57PM WRN Plugins load failed: getcontext - invalid context specified: "" +1:57PM WRN Plugins load failed: getcontext - invalid context specified: "" +1:57PM WRN Plugins load failed: getcontext - invalid context specified: "" +1:57PM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp 127.0.0.1:8080: connect: connection refused" +1:57PM ERR ClusterUpdater failed error="conn check failed (1/5)" +1:57PM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp 127.0.0.1:8080: connect: connection refused" +1:57PM ERR ClusterUpdater failed error="conn check failed (2/5)" +1:57PM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp 127.0.0.1:8080: connect: connection refused" +1:57PM ERR ClusterUpdater failed error="conn check failed (3/5)" +1:57PM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp 127.0.0.1:8080: connect: connection refused" +1:57PM ERR ClusterUpdater failed error="conn check failed (4/5)" +1:57PM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp 127.0.0.1:8080: connect: connection refused" +1:57PM ERR Conn check failed (5/5). Bailing out! +1:57PM WRN Save failed. no active config detected +1:57PM ERR nuking k9s shell pod error="getcontext - invalid context specified: \"\"" +1:57PM WRN Save failed. no active config detected +1:57PM INF 🐶 K9s starting up... +1:57PM ERR config refine failed error="unable to activate context \"\": getcontext - invalid context specified: \"\"" +1:57PM ERR Fail to locate metrics-server error="Get \"http://localhost:8080/api\": dial tcp 127.0.0.1:8080: connect: connection refused" +1:57PM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp 127.0.0.1:8080: connect: connection refused" +1:57PM INF ✅ Kubernetes connectivity +1:57PM WRN Save failed. no active config detected +1:57PM ERR Fail to load global/context configuration error="unable to activate context \"\": getcontext - invalid context specified: \"\"\nGet \"http://localhost:8080/api\": dial tcp 127.0.0.1:8080: connect: connection refused\ncannot connect to context: \nk8s connection failed for context: " +1:57PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +1:57PM ERR Load cluster resources - No API server connection +1:57PM ERR failed to list contexts error="no connection" +1:57PM WRN Unable to dial discovery API error="no connection to dial" +1:57PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +1:57PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +1:57PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +1:57PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +1:57PM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp 127.0.0.1:8080: connect: connection refused" +1:57PM ERR Load cluster resources - No API server connection +1:57PM WRN Unable to dial discovery API error="no connection to dial" +1:57PM WRN Plugins load failed: getcontext - invalid context specified: "" +1:57PM WRN Plugins load failed: getcontext - invalid context specified: "" +1:57PM WRN Plugins load failed: getcontext - invalid context specified: "" +1:57PM WRN Plugins load failed: getcontext - invalid context specified: "" +1:57PM WRN Plugins load failed: getcontext - invalid context specified: "" +1:57PM WRN Plugins load failed: getcontext - invalid context specified: "" +1:57PM WRN Plugins load failed: getcontext - invalid context specified: "" +1:57PM WRN Plugins load failed: getcontext - invalid context specified: "" +1:57PM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp 127.0.0.1:8080: connect: connection refused" +1:57PM ERR ClusterUpdater failed error="conn check failed (1/5)" +1:57PM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp 127.0.0.1:8080: connect: connection refused" +1:57PM ERR ClusterUpdater failed error="conn check failed (2/5)" +1:57PM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp 127.0.0.1:8080: connect: connection refused" +1:57PM ERR ClusterUpdater failed error="conn check failed (3/5)" +1:57PM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp 127.0.0.1:8080: connect: connection refused" +1:57PM ERR ClusterUpdater failed error="conn check failed (4/5)" +1:57PM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp 127.0.0.1:8080: connect: connection refused" +1:57PM ERR Conn check failed (5/5). Bailing out! +1:57PM WRN Save failed. no active config detected +1:57PM ERR nuking k9s shell pod error="getcontext - invalid context specified: \"\"" +1:57PM WRN Save failed. no active config detected +1:57PM INF 🐶 K9s starting up... +1:57PM ERR config refine failed error="unable to activate context \"\": getcontext - invalid context specified: \"\"" +1:57PM ERR Fail to locate metrics-server error="Get \"http://localhost:8080/api\": dial tcp 127.0.0.1:8080: connect: connection refused" +1:57PM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp 127.0.0.1:8080: connect: connection refused" +1:57PM INF ✅ Kubernetes connectivity +1:57PM WRN Save failed. no active config detected +1:57PM ERR Fail to load global/context configuration error="unable to activate context \"\": getcontext - invalid context specified: \"\"\nGet \"http://localhost:8080/api\": dial tcp 127.0.0.1:8080: connect: connection refused\ncannot connect to context: \nk8s connection failed for context: " +1:57PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +1:57PM ERR Load cluster resources - No API server connection +1:57PM ERR failed to list contexts error="no connection" +1:57PM WRN Unable to dial discovery API error="no connection to dial" +1:57PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +1:57PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +1:57PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +1:57PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +1:57PM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp 127.0.0.1:8080: connect: connection refused" +1:57PM ERR Load cluster resources - No API server connection +1:57PM WRN Unable to dial discovery API error="no connection to dial" +1:57PM WRN Plugins load failed: getcontext - invalid context specified: "" +1:57PM WRN Plugins load failed: getcontext - invalid context specified: "" +1:57PM WRN Plugins load failed: getcontext - invalid context specified: "" +1:57PM WRN Plugins load failed: getcontext - invalid context specified: "" +1:57PM WRN Plugins load failed: getcontext - invalid context specified: "" +1:57PM WRN Plugins load failed: getcontext - invalid context specified: "" +1:57PM WRN Plugins load failed: getcontext - invalid context specified: "" +1:57PM WRN Plugins load failed: getcontext - invalid context specified: "" +1:57PM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp 127.0.0.1:8080: connect: connection refused" +1:57PM ERR ClusterUpdater failed error="conn check failed (1/5)" +1:57PM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp 127.0.0.1:8080: connect: connection refused" +1:57PM ERR ClusterUpdater failed error="conn check failed (2/5)" +1:57PM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp 127.0.0.1:8080: connect: connection refused" +1:57PM ERR ClusterUpdater failed error="conn check failed (3/5)" +1:57PM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp 127.0.0.1:8080: connect: connection refused" +1:57PM ERR ClusterUpdater failed error="conn check failed (4/5)" +1:57PM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp 127.0.0.1:8080: connect: connection refused" +1:57PM ERR Conn check failed (5/5). Bailing out! +1:57PM WRN Save failed. no active config detected +1:57PM ERR nuking k9s shell pod error="getcontext - invalid context specified: \"\"" +1:57PM WRN Save failed. no active config detected +1:58PM INF 🐶 K9s starting up... +1:58PM INF ✅ Kubernetes connectivity +3:10PM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-3l72d8xu-uninstall-opzq" +3:10PM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-67a8f4ly-uninstall-d4dx" +3:10PM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-4bidouma-uninstall-kqr0" +3:10PM ERR Delete failed with `jobs.batch "cp-auto-ems-4bidouma-uninstall-kqr0" not found error="jobs.batch \"cp-auto-ems-4bidouma-uninstall-kqr0\" not found" +3:10PM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-5wistkbw-uninstall-kv6w" +3:10PM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-kbltsc18-uninstall-lwfi" +3:10PM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-h700uzx1-uninstall-nwa9" +3:17PM ERR Command failed error="exit status 137" +3:17PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-17906-42nlq -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:17PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:17PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-17906-42nlq\": pods \"emsuibht-17906-42nlq\" not found" +3:17PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-17906-42nlq\": pods \"emsuibht-17906-42nlq\" not found" +3:17PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-17906-42nlq\": pods \"emsuibht-17906-42nlq\" not found" +3:17PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-17906-42nlq\": pods \"emsuibht-17906-42nlq\" not found" +3:17PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-17906-42nlq\": pods \"emsuibht-17906-42nlq\" not found" +3:17PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-17906-42nlq\": pods \"emsuibht-17906-42nlq\" not found" +3:18PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-17906-42nlq\": pods \"emsuibht-17906-42nlq\" not found" +3:18PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-17906-42nlq\": pods \"emsuibht-17906-42nlq\" not found" +3:18PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-17906-42nlq\": pods \"emsuibht-17906-42nlq\" not found" +3:18PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-17906-42nlq\": pods \"emsuibht-17906-42nlq\" not found" +3:18PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-17906-42nlq\": pods \"emsuibht-17906-42nlq\" not found" +3:18PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-17906-42nlq\": pods \"emsuibht-17906-42nlq\" not found" +3:19PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-17906-42nlq\": pods \"emsuibht-17906-42nlq\" not found" +3:19PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-17906-42nlq\": pods \"emsuibht-17906-42nlq\" not found" +3:19PM WRN reconciler exited error="failed to locate pod \"cp-automation-dp/emsuibht-17906-42nlq\": pods \"emsuibht-17906-42nlq\" not found" +3:19PM ERR failed to locate pod "cp-automation-dp/emsuibht-17906-42nlq": pods "emsuibht-17906-42nlq" not found +4:00PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +4:00PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:00PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +4:00PM ERR ClusterUpdater failed error="conn check failed (2/5)" +5:20PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +5:20PM ERR ClusterUpdater failed error="conn check failed (3/5)" +6:00PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: operation timed out" +6:00PM ERR ClusterUpdater failed error="conn check failed (4/5)" +6:00PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +6:00PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +12:26PM INF 🐶 K9s starting up... +12:26PM INF ✅ Kubernetes connectivity +1:07PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-1055-q4kwr\" is waiting to start: trying and failing to pull image for cp-automation-dp/emsuibht-1055-q4kwr (run-test)" +1:07PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-1055-q4kwr\" is waiting to start: trying and failing to pull image for cp-automation-dp/emsuibht-1055-q4kwr (run-test)" +1:07PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-1055-q4kwr\" is waiting to start: trying and failing to pull image for cp-automation-dp/emsuibht-1055-q4kwr (run-test)" +1:07PM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for cp-automation-dp/emsuibht-1055-q4kwr (run-test)" +1:07PM ERR Command failed error="exit status 1" +1:07PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-1055-q4kwr -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +1:07PM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +1:07PM ERR Command failed error="exit status 1" +1:07PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-17844-t8kq4 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +1:07PM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +1:08PM ERR Command failed error="exit status 1" +1:08PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-17844-t8kq4 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +1:08PM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +1:08PM ERR Command failed error="exit status 1" +1:08PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-17844-t8kq4 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +1:08PM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +1:08PM ERR Command failed error="exit status 1" +1:08PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-17844-t8kq4 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +1:08PM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +1:08PM ERR Command failed error="exit status 1" +1:08PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-17844-t8kq4 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +1:08PM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +1:14PM ERR Watcher failed for containers -- failed to locate pod "cp-automation-dp/emsuibmdpbht-31526-p577t": pods "emsuibmdpbht-31526-p577t" not found error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-31526-p577t\": pods \"emsuibmdpbht-31526-p577t\" not found" +1:34PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-19-qvqhf\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-19-qvqhf (run-test)" +1:34PM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for cp-automation-dp/emsuibht-19-qvqhf (run-test)" +1:34PM ERR Command failed error="exit status 1" +1:34PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-19-qvqhf -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +1:34PM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +1:34PM ERR cp-automation-dp/emsuibht-19-qvqhf is not in a running state +2:23PM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-one-uninstall-u0ut" +2:23PM WRN Deleted (0) portforward for "cp-automation-dp/tp-msg-gateway-preinstall-abup" +2:23PM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-one-uninstall-qiju" +2:23PM WRN Deleted (0) portforward for "cp-automation-dp/tp-msg-gateway-preinstall-f011" +2:23PM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-one-uninstall-8h6t" +2:23PM WRN Deleted (0) portforward for "cp-automation-dp/tp-msg-gateway-preinstall-cqjd" +2:24PM ERR cp-automation-dp/emsuibht-17948-sgrnt is not in a running state +4:00PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +4:00PM ERR ClusterUpdater failed error="conn check failed (1/5)" +6:00PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +6:00PM ERR ClusterUpdater failed error="conn check failed (2/5)" +7:01PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +7:01PM ERR ClusterUpdater failed error="conn check failed (3/5)" +11:04PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: operation timed out" +11:04PM ERR ClusterUpdater failed error="conn check failed (4/5)" +11:04PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +11:04PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +10:51AM INF 🐶 K9s starting up... +10:51AM ERR config refine failed error="unable to activate context \"\": getcontext - invalid context specified: \"\"" +10:51AM ERR Fail to locate metrics-server error="Get \"http://localhost:8080/api\": dial tcp [::1]:8080: connect: connection refused" +10:51AM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp [::1]:8080: connect: connection refused" +10:51AM INF ✅ Kubernetes connectivity +10:51AM WRN Save failed. no active config detected +10:51AM ERR Fail to load global/context configuration error="unable to activate context \"\": getcontext - invalid context specified: \"\"\nGet \"http://localhost:8080/api\": dial tcp [::1]:8080: connect: connection refused\ncannot connect to context: \nk8s connection failed for context: " +10:51AM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +10:51AM ERR Load cluster resources - No API server connection +10:51AM ERR failed to list contexts error="no connection" +10:51AM WRN Unable to dial discovery API error="no connection to dial" +10:51AM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +10:51AM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp [::1]:8080: connect: connection refused" +10:51AM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +10:51AM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +10:51AM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +10:51AM WRN Unable to dial discovery API error="no connection to dial" +10:51AM ERR Load cluster resources - No API server connection +10:51AM WRN Plugins load failed: getcontext - invalid context specified: "" +10:51AM WRN Plugins load failed: getcontext - invalid context specified: "" +10:51AM WRN Save failed. no active config detected +10:51AM ERR nuking k9s shell pod error="getcontext - invalid context specified: \"\"" +10:51AM WRN Save failed. no active config detected +11:08AM INF 🐶 K9s starting up... +11:08AM INF ✅ Kubernetes connectivity +11:08AM WRN log-reader EOF error="stream closed EOF for cp1-ns/tp-hawk-infra-upgrade-8brw-rbvtf (hawk-upgrade)" +11:08AM WRN log-reader EOF error="stream closed EOF for cp1-ns/tp-hawk-infra-upgrade-8brw-rbvtf (hawk-upgrade)" +11:10AM ERR cp-automation-dp/emsuibht-9661-6q7mq is not in a running state +11:10AM ERR Command failed error="exit status 1" +11:10AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-9661-6q7mq -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +11:10AM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +11:10AM ERR Command failed error="exit status 1" +11:10AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-9661-6q7mq -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +11:10AM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +11:10AM ERR Command failed error="exit status 1" +11:10AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-9661-6q7mq -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +11:10AM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +11:10AM ERR Command failed error="exit status 1" +11:10AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-9661-6q7mq -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +11:10AM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +11:10AM ERR Command failed error="exit status 1" +11:10AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-9661-6q7mq -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +11:10AM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +11:10AM ERR Command failed error="exit status 1" +11:10AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-9661-6q7mq -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +11:10AM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +11:10AM ERR Command failed error="exit status 1" +11:10AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-9661-6q7mq -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +11:10AM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +11:30AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-23324-qrpjs\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-23324-qrpjs (run-test)" +11:30AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-23324-qrpjs\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-23324-qrpjs (run-test)" +11:30AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-23324-qrpjs\" is waiting to start: CreateContainerConfigError for cp-automation-dp/emsuibht-23324-qrpjs (run-test)" +11:30AM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for cp-automation-dp/emsuibht-23324-qrpjs (run-test)" +11:30AM ERR Command failed error="exit status 1" +11:30AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-23324-qrpjs -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +11:30AM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +2:02PM INF 🐶 K9s starting up... +2:02PM INF ✅ Kubernetes connectivity +2:31PM INF 🐶 K9s starting up... +2:31PM INF ✅ Kubernetes connectivity +2:32PM ERR Command failed error="exit status 137" +2:32PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-8850-lhrch -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +2:32PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +2:32PM ERR Command failed error="exit status 137" +2:32PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-5979-mc9gq -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +2:32PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +2:38PM ERR Command failed error="exit status 137" +2:38PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-28669-rpjwj -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +2:38PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +2:38PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-28669-rpjwj\": pods \"emsuibmdpbht-28669-rpjwj\" not found" +2:38PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-28669-rpjwj\": pods \"emsuibmdpbht-28669-rpjwj\" not found" +2:38PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-28669-rpjwj\": pods \"emsuibmdpbht-28669-rpjwj\" not found" +2:38PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-28669-rpjwj\": pods \"emsuibmdpbht-28669-rpjwj\" not found" +2:38PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-28669-rpjwj\": pods \"emsuibmdpbht-28669-rpjwj\" not found" +2:38PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-28669-rpjwj\": pods \"emsuibmdpbht-28669-rpjwj\" not found" +2:38PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-28669-rpjwj\": pods \"emsuibmdpbht-28669-rpjwj\" not found" +2:38PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-28669-rpjwj\": pods \"emsuibmdpbht-28669-rpjwj\" not found" +2:39PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-28669-rpjwj\": pods \"emsuibmdpbht-28669-rpjwj\" not found" +2:39PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-28669-rpjwj\": pods \"emsuibmdpbht-28669-rpjwj\" not found" +2:39PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-28669-rpjwj\": pods \"emsuibmdpbht-28669-rpjwj\" not found" +2:39PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-28669-rpjwj\": pods \"emsuibmdpbht-28669-rpjwj\" not found" +2:39PM ERR Command failed error="exit status 130" +2:39PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-5978-xk5n4 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +2:39PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +2:40PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-28669-rpjwj\": pods \"emsuibmdpbht-28669-rpjwj\" not found" +2:40PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-28669-rpjwj\": pods \"emsuibmdpbht-28669-rpjwj\" not found" +2:40PM WRN reconciler exited error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-28669-rpjwj\": pods \"emsuibmdpbht-28669-rpjwj\" not found" +2:40PM ERR failed to locate pod "cp-automation-dp/emsuibmdpbht-28669-rpjwj": pods "emsuibmdpbht-28669-rpjwj" not found +2:49PM ERR Command failed error="exit status 137" +2:49PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-1384-7vzvs -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +2:49PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +2:50PM ERR Command failed error="exit status 137" +2:50PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-16763-xmkr7 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +2:50PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:03PM INF 🐶 K9s starting up... +1:03PM INF ✅ Kubernetes connectivity +1:09PM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/emsuibht-31422-m25vv (run-test)" +1:10PM ERR Command failed error="exit status 137" +1:10PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-31422-m25vv -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:10PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:10PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-31422-m25vv\": pods \"emsuibht-31422-m25vv\" not found" +1:10PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-31422-m25vv\": pods \"emsuibht-31422-m25vv\" not found" +1:10PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-31422-m25vv\": pods \"emsuibht-31422-m25vv\" not found" +1:10PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-31422-m25vv\": pods \"emsuibht-31422-m25vv\" not found" +1:10PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-31422-m25vv\": pods \"emsuibht-31422-m25vv\" not found" +1:10PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-31422-m25vv\": pods \"emsuibht-31422-m25vv\" not found" +1:10PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-31422-m25vv\": pods \"emsuibht-31422-m25vv\" not found" +1:10PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-31422-m25vv\": pods \"emsuibht-31422-m25vv\" not found" +1:10PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-31422-m25vv\": pods \"emsuibht-31422-m25vv\" not found" +1:11PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-31422-m25vv\": pods \"emsuibht-31422-m25vv\" not found" +1:11PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-31422-m25vv\": pods \"emsuibht-31422-m25vv\" not found" +1:11PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-31422-m25vv\": pods \"emsuibht-31422-m25vv\" not found" +1:11PM WRN reconciler exited error="context canceled" +1:16PM ERR Command failed error="exit status 137" +1:16PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-650-bzbjw -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:16PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:24PM ERR Command failed error="exit status 130" +1:24PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-1182-9j4nh -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:24PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:35PM ERR Command failed error="exit status 137" +1:35PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-14863-ps7t9 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:35PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:35PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-14863-ps7t9\": pods \"emsuibht-14863-ps7t9\" not found" +1:35PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-14863-ps7t9\": pods \"emsuibht-14863-ps7t9\" not found" +1:35PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-14863-ps7t9\": pods \"emsuibht-14863-ps7t9\" not found" +1:35PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-14863-ps7t9\": pods \"emsuibht-14863-ps7t9\" not found" +1:35PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-14863-ps7t9\": pods \"emsuibht-14863-ps7t9\" not found" +1:35PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-14863-ps7t9\": pods \"emsuibht-14863-ps7t9\" not found" +1:35PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-14863-ps7t9\": pods \"emsuibht-14863-ps7t9\" not found" +1:35PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-14863-ps7t9\": pods \"emsuibht-14863-ps7t9\" not found" +1:35PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-14863-ps7t9\": pods \"emsuibht-14863-ps7t9\" not found" +1:36PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-14863-ps7t9\": pods \"emsuibht-14863-ps7t9\" not found" +1:36PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-14863-ps7t9\": pods \"emsuibht-14863-ps7t9\" not found" +1:36PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-14863-ps7t9\": pods \"emsuibht-14863-ps7t9\" not found" +1:37PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-14863-ps7t9\": pods \"emsuibht-14863-ps7t9\" not found" +1:37PM WRN reconciler exited error="failed to locate pod \"cp-automation-dp/emsuibht-14863-ps7t9\": pods \"emsuibht-14863-ps7t9\" not found" +1:37PM ERR failed to locate pod "cp-automation-dp/emsuibht-14863-ps7t9": pods "emsuibht-14863-ps7t9" not found +1:37PM INF 🐶 K9s starting up... +1:37PM INF ✅ Kubernetes connectivity +1:44PM ERR Command failed error="exit status 137" +1:44PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-18235-l7shv -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:44PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:44PM ERR Command failed error="exit status 137" +1:44PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-29454-pxndf -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:44PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:44PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-29454-pxndf\": pods \"emsuibmdpbht-29454-pxndf\" not found" +1:44PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-29454-pxndf\": pods \"emsuibmdpbht-29454-pxndf\" not found" +1:44PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-29454-pxndf\": pods \"emsuibmdpbht-29454-pxndf\" not found" +1:44PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-29454-pxndf\": pods \"emsuibmdpbht-29454-pxndf\" not found" +1:44PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-29454-pxndf\": pods \"emsuibmdpbht-29454-pxndf\" not found" +1:44PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-29454-pxndf\": pods \"emsuibmdpbht-29454-pxndf\" not found" +1:44PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-29454-pxndf\": pods \"emsuibmdpbht-29454-pxndf\" not found" +1:44PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-29454-pxndf\": pods \"emsuibmdpbht-29454-pxndf\" not found" +1:44PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-29454-pxndf\": pods \"emsuibmdpbht-29454-pxndf\" not found" +1:44PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-29454-pxndf\": pods \"emsuibmdpbht-29454-pxndf\" not found" +1:44PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-29454-pxndf\": pods \"emsuibmdpbht-29454-pxndf\" not found" +1:45PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-29454-pxndf\": pods \"emsuibmdpbht-29454-pxndf\" not found" +1:45PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-29454-pxndf\": pods \"emsuibmdpbht-29454-pxndf\" not found" +1:45PM WRN reconciler exited error="context canceled" +1:47PM ERR Command failed error="exit status 137" +1:47PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-21441-bw2zr -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:47PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:47PM ERR Command failed error="exit status 137" +1:47PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-24816-qgxf4 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:47PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:47PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-21441-bw2zr\": pods \"emsuibht-21441-bw2zr\" not found" +1:47PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-24816-qgxf4\": pods \"emsuibmdpbht-24816-qgxf4\" not found" +1:47PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-21441-bw2zr\": pods \"emsuibht-21441-bw2zr\" not found" +1:47PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-24816-qgxf4\": pods \"emsuibmdpbht-24816-qgxf4\" not found" +1:47PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-21441-bw2zr\": pods \"emsuibht-21441-bw2zr\" not found" +1:47PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-24816-qgxf4\": pods \"emsuibmdpbht-24816-qgxf4\" not found" +1:47PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-21441-bw2zr\": pods \"emsuibht-21441-bw2zr\" not found" +1:47PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-24816-qgxf4\": pods \"emsuibmdpbht-24816-qgxf4\" not found" +1:47PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-21441-bw2zr\": pods \"emsuibht-21441-bw2zr\" not found" +1:47PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-24816-qgxf4\": pods \"emsuibmdpbht-24816-qgxf4\" not found" +1:47PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-21441-bw2zr\": pods \"emsuibht-21441-bw2zr\" not found" +1:47PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-24816-qgxf4\": pods \"emsuibmdpbht-24816-qgxf4\" not found" +1:47PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-21441-bw2zr\": pods \"emsuibht-21441-bw2zr\" not found" +1:47PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-24816-qgxf4\": pods \"emsuibmdpbht-24816-qgxf4\" not found" +1:47PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-24816-qgxf4\": pods \"emsuibmdpbht-24816-qgxf4\" not found" +1:47PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-21441-bw2zr\": pods \"emsuibht-21441-bw2zr\" not found" +1:47PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-21441-bw2zr\": pods \"emsuibht-21441-bw2zr\" not found" +1:47PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-24816-qgxf4\": pods \"emsuibmdpbht-24816-qgxf4\" not found" +1:47PM WRN reconciler exited error="context canceled" +1:47PM WRN reconciler exited error="context canceled" +1:53PM ERR Command failed error="exit status 137" +1:53PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-16494-mtv5w -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:53PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:53PM ERR Command failed error="exit status 137" +1:53PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-28454-6sg6z -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:53PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:53PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-16494-mtv5w\": pods \"emsuibht-16494-mtv5w\" not found" +1:53PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-28454-6sg6z\": pods \"emsuibmdpbht-28454-6sg6z\" not found" +1:53PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-16494-mtv5w\": pods \"emsuibht-16494-mtv5w\" not found" +1:53PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-28454-6sg6z\": pods \"emsuibmdpbht-28454-6sg6z\" not found" +1:53PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-16494-mtv5w\": pods \"emsuibht-16494-mtv5w\" not found" +1:53PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-28454-6sg6z\": pods \"emsuibmdpbht-28454-6sg6z\" not found" +1:53PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-28454-6sg6z\": pods \"emsuibmdpbht-28454-6sg6z\" not found" +1:53PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-16494-mtv5w\": pods \"emsuibht-16494-mtv5w\" not found" +1:53PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-28454-6sg6z\": pods \"emsuibmdpbht-28454-6sg6z\" not found" +1:53PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-16494-mtv5w\": pods \"emsuibht-16494-mtv5w\" not found" +1:53PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-16494-mtv5w\": pods \"emsuibht-16494-mtv5w\" not found" +1:53PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-28454-6sg6z\": pods \"emsuibmdpbht-28454-6sg6z\" not found" +1:53PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-28454-6sg6z\": pods \"emsuibmdpbht-28454-6sg6z\" not found" +1:53PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-16494-mtv5w\": pods \"emsuibht-16494-mtv5w\" not found" +1:53PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-16494-mtv5w\": pods \"emsuibht-16494-mtv5w\" not found" +1:53PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-28454-6sg6z\": pods \"emsuibmdpbht-28454-6sg6z\" not found" +1:53PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-28454-6sg6z\": pods \"emsuibmdpbht-28454-6sg6z\" not found" +1:53PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-16494-mtv5w\": pods \"emsuibht-16494-mtv5w\" not found" +1:53PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-16494-mtv5w\": pods \"emsuibht-16494-mtv5w\" not found" +1:53PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-28454-6sg6z\": pods \"emsuibmdpbht-28454-6sg6z\" not found" +1:53PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-28454-6sg6z\": pods \"emsuibmdpbht-28454-6sg6z\" not found" +1:53PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-16494-mtv5w\": pods \"emsuibht-16494-mtv5w\" not found" +1:53PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-28454-6sg6z\": pods \"emsuibmdpbht-28454-6sg6z\" not found" +1:54PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-16494-mtv5w\": pods \"emsuibht-16494-mtv5w\" not found" +1:54PM WRN reconciler exited error="context canceled" +1:54PM WRN reconciler exited error="context canceled" +1:58PM ERR Command failed error="exit status 137" +1:58PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-16219-g29sn -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:58PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:58PM ERR Command failed error="exit status 137" +1:58PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-3468-rgwj2 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:58PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:58PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-3468-rgwj2\": pods \"emsuibmdpbht-3468-rgwj2\" not found" +1:58PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-3468-rgwj2\": pods \"emsuibmdpbht-3468-rgwj2\" not found" +1:58PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-3468-rgwj2\": pods \"emsuibmdpbht-3468-rgwj2\" not found" +1:58PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-3468-rgwj2\": pods \"emsuibmdpbht-3468-rgwj2\" not found" +1:58PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-3468-rgwj2\": pods \"emsuibmdpbht-3468-rgwj2\" not found" +1:58PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-3468-rgwj2\": pods \"emsuibmdpbht-3468-rgwj2\" not found" +1:58PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-3468-rgwj2\": pods \"emsuibmdpbht-3468-rgwj2\" not found" +1:58PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-3468-rgwj2\": pods \"emsuibmdpbht-3468-rgwj2\" not found" +1:58PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-3468-rgwj2\": pods \"emsuibmdpbht-3468-rgwj2\" not found" +1:59PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-3468-rgwj2\": pods \"emsuibmdpbht-3468-rgwj2\" not found" +1:59PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-3468-rgwj2\": pods \"emsuibmdpbht-3468-rgwj2\" not found" +1:59PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-3468-rgwj2\": pods \"emsuibmdpbht-3468-rgwj2\" not found" +2:00PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-3468-rgwj2\": pods \"emsuibmdpbht-3468-rgwj2\" not found" +2:10PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-3468-rgwj2\": pods \"emsuibmdpbht-3468-rgwj2\" not found" +2:10PM WRN reconciler exited error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-3468-rgwj2\": pods \"emsuibmdpbht-3468-rgwj2\" not found" +2:10PM ERR failed to locate pod "cp-automation-dp/emsuibmdpbht-3468-rgwj2": pods "emsuibmdpbht-3468-rgwj2" not found +2:39PM ERR Command failed error="exit status 137" +2:39PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-2913-6w5b9 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +2:39PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +2:45PM INF 🐶 K9s starting up... +2:45PM INF ✅ Kubernetes connectivity +2:46PM ERR Command failed error="exit status 137" +2:46PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-24262-tw7l2 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +2:46PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +2:57PM ERR Command failed error="exit status 137" +2:57PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-12063-mb2j7 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +2:57PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +2:57PM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-uninstall-pkqd" +2:57PM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-uninstall-g3ob" +2:57PM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-uninstall-juvv" +2:57PM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-clgsa0tc-uninstall-wtwq" +3:02PM ERR Command failed error="exit status 137" +3:02PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-18782-4jdvr -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:02PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:04PM ERR Command failed error="exit status 130" +3:04PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-20447-wvq8g -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +3:04PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +3:07PM ERR Command failed error="exit status 130" +3:07PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-8412-t7s6k -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +3:07PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +3:09PM ERR Command failed error="exit status 137" +3:09PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-8412-t7s6k -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:09PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:13PM ERR Command failed error="exit status 137" +3:13PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-16214-rbvqx -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:13PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:24PM ERR Command failed error="exit status 130" +3:24PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-21643-klwwm -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +3:24PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +3:31PM ERR Command failed error="exit status 137" +3:31PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-30458-ctc7l -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:31PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +4:10PM INF 🐶 K9s starting up... +4:10PM INF ✅ Kubernetes connectivity +4:12PM ERR Command failed error="exit status 137" +4:12PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-19644-pvf9d -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +4:12PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +4:12PM ERR Command failed error="exit status 137" +4:12PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-6377-z68bs -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +4:12PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +4:14PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +4:14PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:14PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +4:14PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:14PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded - error from a previous attempt: http2: client connection lost" +4:14PM ERR ClusterUpdater failed error="conn check failed (2/5)" +4:16PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +4:16PM ERR ClusterUpdater failed error="conn check failed (2/5)" +5:27PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +5:27PM ERR ClusterUpdater failed error="conn check failed (3/5)" +5:28PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +5:28PM ERR ClusterUpdater failed error="conn check failed (3/5)" +5:28PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +5:28PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +6:13PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: operation timed out" +6:13PM ERR ClusterUpdater failed error="conn check failed (4/5)" +6:13PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +6:13PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +9:12AM INF 🐶 K9s starting up... +9:12AM INF ✅ Kubernetes connectivity +9:12AM INF 🐶 K9s starting up... +9:12AM INF ✅ Kubernetes connectivity +9:13AM ERR Command failed error="exit status 137" +9:13AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-16971-rz7lw -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +9:13AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +9:13AM ERR Command failed error="exit status 137" +9:13AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-13480-nzjzb -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +9:13AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +9:27AM ERR Command failed error="exit status 137" +9:27AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-10993-hs8zk -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +9:27AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +9:30AM INF 🐶 K9s starting up... +9:30AM INF ✅ Kubernetes connectivity +9:32AM ERR Command failed error="exit status 137" +9:32AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-8181-s4lbp -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +9:32AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +9:34AM INF 🐶 K9s starting up... +9:34AM INF ✅ Kubernetes connectivity +9:37AM ERR Command failed error="exit status 137" +9:37AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-29456-79jmk -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +9:37AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +10:01AM ERR Command failed error="exit status 137" +10:01AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-5178-zrjlm -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +10:01AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +10:02AM ERR Command failed error="exit status 137" +10:02AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-655-k6kdw -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +10:02AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +10:58AM INF 🐶 K9s starting up... +10:58AM INF ✅ Kubernetes connectivity +11:05AM INF 🐶 K9s starting up... +11:05AM INF ✅ Kubernetes connectivity +11:06AM ERR Command failed error="exit status 137" +11:06AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-3207-lpnmx -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +11:06AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +8:55AM INF 🐶 K9s starting up... +8:55AM INF ✅ Kubernetes connectivity +9:01AM INF 🐶 K9s starting up... +9:01AM INF ✅ Kubernetes connectivity +9:24AM ERR cp-automation-dp/emsbasic1-8265-qrw89 is not in a running state +9:31AM INF 🐶 K9s starting up... +9:31AM INF ✅ Kubernetes connectivity +9:35AM ERR Command failed error="exit status 130" +9:35AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-7803-z9k6w -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +9:35AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:18PM INF 🐶 K9s starting up... +1:18PM INF ✅ Kubernetes connectivity +1:19PM ERR Command failed error="exit status 137" +1:19PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-22849-kj9rs -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:19PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:31PM ERR Command failed error="exit status 137" +1:31PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-12036-mxbdm -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:31PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:41PM INF 🐶 K9s starting up... +1:41PM INF ✅ Kubernetes connectivity +1:47PM ERR Command failed error="exit status 137" +1:47PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-3008-sf9sf -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:47PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:48PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-275-uninstall-ygrc" +1:48PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-276-emsinit" +1:48PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-276-preinstall-zb4i" +1:48PM WRN Deleted (0) portforward for "cp-automation-dp/ems-test-cap-uninstall-lwxq" +1:48PM ERR Delete failed with `jobs.batch "ems-test-cap-uninstall-lwxq" not found error="jobs.batch \"ems-test-cap-uninstall-lwxq\" not found" +1:48PM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-ui-auto-259-uninstall-xosw" +1:48PM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-ui-auto-272-uninstall-sw3f" +1:48PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-uninstall-zcl1" +1:48PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-uninstall-pg0g" +1:48PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-274-preinstall-t9sp" +1:48PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-274-emsinit" +1:57PM ERR Command failed error="exit status 137" +1:57PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-15021-xvrrh -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:57PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +2:18PM ERR Command failed error="exit status 137" +2:18PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-19144-l2gbw -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +2:18PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +2:54PM ERR Command failed error="exit status 130" +2:54PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-22477-g7fcx -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +2:54PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +2:56PM ERR Command failed error="exit status 137" +2:56PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-2747-7qthb -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +2:56PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +10:30AM INF 🐶 K9s starting up... +10:30AM INF ✅ Kubernetes connectivity +10:30AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-291-uninstall-bqyr" +10:30AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-290-uninstall-he61" +10:30AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-289-uninstall-obzz" +10:30AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-288-uninstall-8kap" +10:30AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-287-uninstall-yvst" +10:30AM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-il6tgtsh-uninstall-modh" +10:30AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-285-uninstall-hjbi" +10:38AM ERR Command failed error="exit status 137" +10:38AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-15055-mthzq -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +10:38AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +12:10PM INF 🐶 K9s starting up... +12:10PM INF ✅ Kubernetes connectivity +12:15PM ERR Command failed error="exit status 137" +12:15PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-29912-47trn -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +12:15PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +12:17PM ERR Command failed error="exit status 137" +12:17PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-28495-h842q -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +12:17PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +12:53PM INF 🐶 K9s starting up... +12:53PM INF ✅ Kubernetes connectivity +12:53PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-300-uninstall-qpgi" +12:53PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-299-uninstall-dmpm" +12:53PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-298-uninstall-bcnj" +12:53PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-297-uninstall-ezi7" +12:53PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-296-uninstall-eouz" +12:53PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-295-uninstall-j65a" +12:53PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-294-uninstall-yfrz" +12:53PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-293-uninstall-kglr" +12:53PM WRN Deleted (0) portforward for "cp-automation-dp/ems-cap-uninstall-wmbl" +12:53PM WRN Deleted (0) portforward for "cp-automation-dp/ems-test-cap-uninstall-c61t" +12:53PM ERR Delete failed with `jobs.batch "ems-test-cap-uninstall-c61t" not found error="jobs.batch \"ems-test-cap-uninstall-c61t\" not found" +12:53PM WRN Deleted (0) portforward for "cp-automation-dp/ems-cap-uninstall-onqt" +12:53PM ERR Delete failed with `jobs.batch "ems-cap-uninstall-onqt" not found error="jobs.batch \"ems-cap-uninstall-onqt\" not found" +12:53PM WRN Deleted (0) portforward for "cp-automation-dp/ems-cap-uninstall-osdo" +12:53PM ERR Delete failed with `jobs.batch "ems-cap-uninstall-osdo" not found error="jobs.batch \"ems-cap-uninstall-osdo\" not found" +12:53PM WRN Deleted (0) portforward for "cp-automation-dp/ems-cap-uninstall-pksk" +12:53PM WRN Deleted (0) portforward for "cp-automation-dp/ems-cap-uninstall-97u4" +12:53PM WRN Deleted (0) portforward for "cp-automation-dp/ems-cap-uninstall-mxg2" +12:53PM WRN Deleted (0) portforward for "cp-automation-dp/ems-cap-uninstall-d6k1" +12:58PM ERR Command failed error="exit status 137" +12:58PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-31078-w4m2k -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +12:58PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +12:58PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-301-uninstall-2agx" +1:03PM ERR Command failed error="exit status 137" +1:03PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-8128-2ks46 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:03PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:27PM INF 🐶 K9s starting up... +1:27PM INF ✅ Kubernetes connectivity +1:28PM ERR Command failed error="exit status 137" +1:28PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-22797-8hkrs -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:28PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:36PM INF 🐶 K9s starting up... +1:36PM INF ✅ Kubernetes connectivity +1:49PM INF 🐶 K9s starting up... +1:49PM INF ✅ Kubernetes connectivity +1:49PM INF 🐶 K9s starting up... +1:49PM INF ✅ Kubernetes connectivity +2:20PM INF 🐶 K9s starting up... +2:20PM INF ✅ Kubernetes connectivity +2:26PM INF 🐶 K9s starting up... +2:26PM INF ✅ Kubernetes connectivity +3:06PM INF 🐶 K9s starting up... +3:06PM INF ✅ Kubernetes connectivity +3:06PM ERR Command failed error="exit status 130" +3:06PM ERR Exec failed "/usr/local/bin/kubectl exec --context cp-cluster-postgres2-ca-maas-dev -it -n cp1-ns tp-cp-msg-webserver-7cc5747d94-2f2tq -c msg-gems -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +3:06PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +3:06PM INF 🐶 K9s starting up... +3:06PM INF ✅ Kubernetes connectivity +3:17PM INF 🐶 K9s starting up... +3:17PM INF ✅ Kubernetes connectivity +3:20PM ERR Command failed error="exit status 130" +3:20PM ERR Exec failed "/usr/local/bin/kubectl exec --context dp-cluster-msg131-ca-mpddev -it -n cp-automation-dp emstestnew-ems-1 -c emstestnew-ems -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +3:20PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +3:31PM INF 🐶 K9s starting up... +3:31PM INF ✅ Kubernetes connectivity +4:07PM INF 🐶 K9s starting up... +4:07PM INF ✅ Kubernetes connectivity +11:27AM INF 🐶 K9s starting up... +11:27AM INF ✅ Kubernetes connectivity +11:28AM INF 🐶 K9s starting up... +11:28AM INF ✅ Kubernetes connectivity +11:32AM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/ems-test-cap-ems-1 (ems-test-cap-ems)" +11:33AM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/ems-test-cap-ems-1 (ems-test-cap-ems)" +11:34AM WRN log-reader EOF error="stream closed EOF for cp-automation-dp/ems-test-cap-ems-1 (ems-test-cap-ems)" +11:34AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/ems-test-cap-ems-1\": pods \"ems-test-cap-ems-1\" not found" +11:34AM ERR Watcher failed for containers -- failed to locate pod "cp-automation-dp/ems-test-cap-ems-1": pods "ems-test-cap-ems-1" not found error="failed to locate pod \"cp-automation-dp/ems-test-cap-ems-1\": pods \"ems-test-cap-ems-1\" not found" +11:36AM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/ems-test-cap-ems-1 (ems-test-cap-ems)" +11:36AM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/ems-test-cap-ems-0 (ems-test-cap-ems)" +11:37AM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/ems-test-cap-ems-2 (ems-test-cap-ems)" +11:37AM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/ems-test-cap-ems-1 (ems-test-cap-ems)" +11:37AM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/tp-msg-gateway-0 (tp-msg-gateway)" +11:37AM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/ems-test-cap-ems-0 (ems-test-cap-ems)" +11:38AM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/ems-test-cap-ems-2 (ems-test-cap-ems)" +11:38AM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/tp-tibtunnel-6747bbf547-qv7zn (tibtunnel)" +11:38AM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/ems-test-cap-ems-1 (ems-test-cap-ems)" +11:43AM INF 🐶 K9s starting up... +11:43AM INF ✅ Kubernetes connectivity +11:43AM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/ems-test-cap-ems-1 (ems-test-cap-ems)" +12:02PM INF 🐶 K9s starting up... +12:02PM INF ✅ Kubernetes connectivity +12:03PM WRN log-reader EOF error="stream closed EOF for cp-automation-dp/ems-test-cap-ems-1 (ems-test-cap-ems)" +12:03PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/ems-test-cap-ems-1\": pods \"ems-test-cap-ems-1\" not found" +12:03PM ERR Watcher failed for containers -- failed to locate pod "cp-automation-dp/ems-test-cap-ems-1": pods "ems-test-cap-ems-1" not found error="failed to locate pod \"cp-automation-dp/ems-test-cap-ems-1\": pods \"ems-test-cap-ems-1\" not found" +12:05PM WRN log-reader EOF error="stream closed EOF for cp-automation-dp/ems-test-cap-ems-1 (ems-test-cap-ems)" +12:05PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/ems-test-cap-ems-1\": pods \"ems-test-cap-ems-1\" not found" +12:05PM ERR Watcher failed for containers -- failed to locate pod "cp-automation-dp/ems-test-cap-ems-1": pods "ems-test-cap-ems-1" not found error="failed to locate pod \"cp-automation-dp/ems-test-cap-ems-1\": pods \"ems-test-cap-ems-1\" not found" +12:15PM WRN log-reader canceled error="stream canceled read tcp 10.123.231.142:61328->54.214.244.98:443: read: connection reset by peer for cp-automation-dp/ems-test-cap-ems-1 (ems-test-cap-ems)" +12:32PM INF 🐶 K9s starting up... +12:32PM INF ✅ Kubernetes connectivity +12:33PM WRN log-reader EOF error="stream closed EOF for cp-automation-dp/ems-cap-ems-1 (ems-cap-ems)" +1:12PM INF 🐶 K9s starting up... +1:12PM INF ✅ Kubernetes connectivity +1:12PM WRN Deleted (0) portforward for "cp-automation-dp/ems-cap-uninstall-hipf" +1:12PM WRN Deleted (0) portforward for "cp-automation-dp/ems-cap-uninstall-gigo" +1:12PM WRN Deleted (0) portforward for "cp-automation-dp/ems-cap-uninstall-teht" +1:12PM ERR Delete failed with `jobs.batch "ems-cap-uninstall-teht" not found error="jobs.batch \"ems-cap-uninstall-teht\" not found" +1:12PM WRN Deleted (0) portforward for "cp-automation-dp/ems-cap-uninstall-nhpr" +1:12PM WRN Deleted (0) portforward for "cp-automation-dp/ems-test-cap-uninstall-5di0" +1:12PM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-4uv0ovpf-uninstall-kehv" +1:12PM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-bhd93b4y-uninstall-xxlr" +1:12PM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-esa6tlon-uninstall-lo18" +1:12PM ERR Delete failed with `jobs.batch "cp-auto-ems-esa6tlon-uninstall-lo18" not found error="jobs.batch \"cp-auto-ems-esa6tlon-uninstall-lo18\" not found" +1:12PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-uninstall-vdyr" +1:12PM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-glkb3a3g-uninstall-bvvp" +1:12PM WRN Deleted (0) portforward for "cp-automation-dp/test-uninstall-bsb4" +1:12PM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-nqpb97rr-uninstall-2h2k" +1:12PM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-wq8vp4xa-uninstall-y9so" +1:13PM ERR Command failed error="exit status 137" +1:13PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-379-j77kf -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:13PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:13PM ERR Command failed error="exit status 130" +1:13PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-22024-hvr9h -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:13PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:17PM ERR Command failed error="exit status 130" +1:17PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-22024-hvr9h -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:17PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:18PM ERR Command failed error="exit status 137" +1:18PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-10102-5zlzw -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:18PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:22PM INF 🐶 K9s starting up... +3:22PM INF ✅ Kubernetes connectivity +3:27PM WRN log-reader EOF error="stream closed EOF for cp-automation-dp/ems-cap-ems-1 (ems-cap-ems)" +3:35PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/ems-cap-ems-1\": pods \"ems-cap-ems-1\" not found" +3:35PM ERR Watcher failed for containers -- failed to locate pod "cp-automation-dp/ems-cap-ems-1": pods "ems-cap-ems-1" not found error="failed to locate pod \"cp-automation-dp/ems-cap-ems-1\": pods \"ems-cap-ems-1\" not found" +3:35PM WRN Deleted (0) portforward for "cp-automation-dp/ems-cap-uninstall-cbiw-m592l" +3:35PM WRN Deleted (0) portforward for "cp-automation-dp/ems-cap-uninstall-ckoz-4vcxw" +3:35PM WRN Deleted (0) portforward for "cp-automation-dp/ems-cap-uninstall-ituj-7cg2q" +3:35PM WRN Deleted (0) portforward for "cp-automation-dp/ems-cap-uninstall-ufte-cpvzv" +3:35PM WRN Deleted (0) portforward for "cp-automation-dp/ems-cap-uninstall-yz2u-tmqvs" +3:35PM WRN Deleted (0) portforward for "cp-automation-dp/ems-test-uninstall-n78k-525j9" +3:35PM WRN Deleted (0) portforward for "cp-automation-dp/ems-cap-uninstall-9dku-f4g2s" +3:35PM WRN Deleted (0) portforward for "cp-automation-dp/ems-cap-uninstall-2l6d-kc8wl" +3:35PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-312-uninstall-83tw-244g7" +3:35PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-311-uninstall-hhzi-lctx5" +5:37PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": read tcp 10.123.231.142:62348->10.97.130.64:443: read: operation timed out" +5:37PM ERR ClusterUpdater failed error="conn check failed (1/5)" +5:37PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": read tcp 10.123.231.142:61973->34.208.107.194:443: read: operation timed out" +5:37PM ERR ClusterUpdater failed error="conn check failed (1/5)" +5:37PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +5:37PM ERR ClusterUpdater failed error="conn check failed (2/5)" +7:00PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded (Client.Timeout exceeded while awaiting headers)" +7:00PM WRN Unable to dial discovery API error="no connection to dial" +7:00PM ERR ClusterUpdater failed error="conn check failed (1/5)" +7:00PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +7:00PM ERR ClusterUpdater failed error="conn check failed (3/5)" +7:00PM WRN namespace validation failed for: "vbmdp" error="user not authorized to list all namespaces" +7:00PM WRN namespace validation failed for: "vbmdp" error="user not authorized to list all namespaces" +7:52AM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": read tcp 192.168.1.110:62916->54.214.244.98:443: read: operation timed out" +7:52AM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:33AM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp: lookup BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com: no such host" +8:33AM ERR ClusterUpdater failed error="conn check failed (2/5)" +8:33AM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp: lookup BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com: no such host" +8:33AM ERR ClusterUpdater failed error="conn check failed (3/5)" +8:37AM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +8:37AM ERR ClusterUpdater failed error="conn check failed (1/5)" +9:32AM INF 🐶 K9s starting up... +9:32AM INF ✅ Kubernetes connectivity +9:34AM WRN log-reader EOF error="stream closed EOF for msgdp-postgres/ems-cap-ems-1 (ems-cap-ems)" +9:36AM WRN log-reader EOF error="stream closed EOF for msgdp-postgres/ems-cap-ems-1 (ems-cap-ems)" +9:37AM ERR refresh failed for gvr: containers error="failed to locate pod \"msgdp-postgres/ems-cap-ems-1\": pods \"ems-cap-ems-1\" not found" +9:37AM ERR Watcher failed for containers -- failed to locate pod "msgdp-postgres/ems-cap-ems-1": pods "ems-cap-ems-1" not found error="failed to locate pod \"msgdp-postgres/ems-cap-ems-1\": pods \"ems-cap-ems-1\" not found" +9:39AM WRN log-reader EOF error="stream closed EOF for msgdp-postgres/ems-cap-ems-1 (ems-cap-ems)" +9:40AM INF 🐶 K9s starting up... +9:40AM INF ✅ Kubernetes connectivity +9:45AM INF 🐶 K9s starting up... +9:45AM INF ✅ Kubernetes connectivity +9:47AM INF 🐶 K9s starting up... +9:47AM INF ✅ Kubernetes connectivity +9:47AM INF 🐶 K9s starting up... +9:47AM INF ✅ Kubernetes connectivity +9:50AM INF 🐶 K9s starting up... +9:50AM INF ✅ Kubernetes connectivity +9:59AM WRN log-reader canceled error="stream canceled context canceled for msgdp-postgres/ems-cap-ems-1 (ems-cap-ems)" +10:01AM WRN log-reader canceled error="stream canceled context canceled for msgdp-postgres/ems-cap-ems-1 (ems-cap-ems)" +10:03AM WRN log-reader canceled error="stream canceled context canceled for msgdp-postgres/ems-cap-ems-1 (ems-cap-ems)" +10:06AM WRN log-reader canceled error="stream canceled context canceled for msgdp-postgres/ems-cap-ems-1 (ems-cap-ems)" +10:19AM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +10:19AM ERR ClusterUpdater failed error="conn check failed (1/5)" +10:19AM ERR refresh failed for gvr: containers error="failed to locate pod \"msgdp-postgres/ems-cap-ems-1\": ACCESS -- No API server connection" +10:19AM WRN reconciler exited error="context canceled" +10:19AM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +10:19AM ERR ClusterUpdater failed error="conn check failed (1/5)" +10:19AM WRN log-reader canceled error="stream canceled context canceled for msgdp-postgres/ems-cap-ems-1 (ems-cap-ems)" +10:48AM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +10:48AM ERR ClusterUpdater failed error="conn check failed (1/5)" +10:48AM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +10:48AM ERR ClusterUpdater failed error="conn check failed (1/5)" +10:48AM WRN log-reader canceled error="stream canceled context canceled for msgdp-postgres/ems-cap-ems-1 (ems-cap-ems)" +11:53AM WRN log-reader canceled error="stream canceled read tcp 10.123.231.142:55318->34.208.107.194:443: read: connection reset by peer for msgdp-postgres/ems-cap-ems-1 (ems-cap-ems)" +12:14PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +12:14PM ERR ClusterUpdater failed error="conn check failed (1/5)" +12:22PM WRN log-reader canceled error="stream canceled context canceled for msgdp-postgres/ems-cap-ems-1 (ems-cap-ems)" +1:39PM INF 🐶 K9s starting up... +1:40PM INF ✅ Kubernetes connectivity +1:41PM ERR cp-automation-dp/emsuiactivation-389-xtwdd is not in a running state +1:43PM INF 🐶 K9s starting up... +1:43PM INF ✅ Kubernetes connectivity +1:45PM ERR Command failed error="exit status 1" +1:45PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-389-xtwdd -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +1:45PM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +1:45PM ERR Command failed error="exit status 1" +1:45PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-389-xtwdd -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +1:45PM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +1:45PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-389-xtwdd\": pods \"emsuiactivation-389-xtwdd\" not found" +1:45PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-389-xtwdd\": pods \"emsuiactivation-389-xtwdd\" not found" +1:45PM ERR Tail logs failed error="pods \"emsuiactivation-389-xtwdd\" not found" +1:45PM WRN reconciler exited error="context canceled" +1:45PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-389-xtwdd\": pods \"emsuiactivation-389-xtwdd\" not found" +1:45PM ERR Watcher failed for containers -- failed to locate pod "cp-automation-dp/emsuiactivation-389-xtwdd": pods "emsuiactivation-389-xtwdd" not found error="failed to locate pod \"cp-automation-dp/emsuiactivation-389-xtwdd\": pods \"emsuiactivation-389-xtwdd\" not found" +1:48PM ERR Command failed error="exit status 137" +1:48PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-9273-gpxwk -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:48PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:48PM ERR Command failed error="exit status 137" +1:48PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-26294-vlvqf -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:48PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:50PM ERR Command failed error="exit status 137" +1:50PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-32119-fg9hh -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:50PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:58PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-315-emsinit" +1:58PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-315-preinstall-phlj" +1:58PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-314-emsinit" +1:58PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-314-preinstall-irni" +1:59PM ERR Command failed error="exit status 137" +1:59PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-28645-4jlp4 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:59PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +2:56PM WRN Deleted (0) portforward for "cp-automation-dp/ems-cap-1-uninstall-cmfk" +2:56PM WRN Deleted (0) portforward for "cp-automation-dp/ems-cap-1-emsinit" +2:57PM WRN Deleted (0) portforward for "cp-automation-dp/ems-cap-1-preinstall-g6mz" +2:57PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-316-uninstall-gpuf" +3:02PM INF 🐶 K9s starting up... +3:02PM INF ✅ Kubernetes connectivity +3:06PM ERR Command failed error="exit status 137" +3:06PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-16996-628mg -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:06PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:06PM ERR Command failed error="exit status 137" +3:06PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-29313-gh897 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:06PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:06PM ERR Command failed error="exit status 137" +3:06PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-28800-zhmvw -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:06PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:06PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-29313-gh897\": pods \"emsuibht-29313-gh897\" not found" +3:06PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-29313-gh897\": pods \"emsuibht-29313-gh897\" not found" +3:06PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-28800-zhmvw\": pods \"emsuiactivation-28800-zhmvw\" not found" +3:06PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-28800-zhmvw\": pods \"emsuiactivation-28800-zhmvw\" not found" +3:06PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-29313-gh897\": pods \"emsuibht-29313-gh897\" not found" +3:06PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-28800-zhmvw\": pods \"emsuiactivation-28800-zhmvw\" not found" +3:06PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-29313-gh897\": pods \"emsuibht-29313-gh897\" not found" +3:06PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-28800-zhmvw\": pods \"emsuiactivation-28800-zhmvw\" not found" +3:06PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-29313-gh897\": pods \"emsuibht-29313-gh897\" not found" +3:06PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-28800-zhmvw\": pods \"emsuiactivation-28800-zhmvw\" not found" +3:06PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-28800-zhmvw\": pods \"emsuiactivation-28800-zhmvw\" not found" +3:06PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-29313-gh897\": pods \"emsuibht-29313-gh897\" not found" +3:06PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-28800-zhmvw\": pods \"emsuiactivation-28800-zhmvw\" not found" +3:06PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-29313-gh897\": pods \"emsuibht-29313-gh897\" not found" +3:06PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-29313-gh897\": pods \"emsuibht-29313-gh897\" not found" +3:06PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-28800-zhmvw\": pods \"emsuiactivation-28800-zhmvw\" not found" +3:06PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-29313-gh897\": pods \"emsuibht-29313-gh897\" not found" +3:06PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-28800-zhmvw\": pods \"emsuiactivation-28800-zhmvw\" not found" +3:06PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-29313-gh897\": pods \"emsuibht-29313-gh897\" not found" +3:06PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-28800-zhmvw\": pods \"emsuiactivation-28800-zhmvw\" not found" +3:06PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-29313-gh897\": pods \"emsuibht-29313-gh897\" not found" +3:06PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-28800-zhmvw\": pods \"emsuiactivation-28800-zhmvw\" not found" +3:07PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-29313-gh897\": pods \"emsuibht-29313-gh897\" not found" +3:07PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-28800-zhmvw\": pods \"emsuiactivation-28800-zhmvw\" not found" +3:07PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-28800-zhmvw\": pods \"emsuiactivation-28800-zhmvw\" not found" +3:07PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-29313-gh897\": pods \"emsuibht-29313-gh897\" not found" +3:07PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-28800-zhmvw\": pods \"emsuiactivation-28800-zhmvw\" not found" +3:07PM WRN reconciler exited error="failed to locate pod \"cp-automation-dp/emsuiactivation-28800-zhmvw\": pods \"emsuiactivation-28800-zhmvw\" not found" +3:07PM ERR failed to locate pod "cp-automation-dp/emsuiactivation-28800-zhmvw": pods "emsuiactivation-28800-zhmvw" not found +3:08PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-29313-gh897\": pods \"emsuibht-29313-gh897\" not found" +3:08PM WRN reconciler exited error="failed to locate pod \"cp-automation-dp/emsuibht-29313-gh897\": pods \"emsuibht-29313-gh897\" not found" +3:08PM ERR failed to locate pod "cp-automation-dp/emsuibht-29313-gh897": pods "emsuibht-29313-gh897" not found +3:32PM ERR Command failed error="exit status 137" +3:32PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-18268-q8j6p -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:32PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +4:01PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +4:01PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:43PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +4:43PM ERR ClusterUpdater failed error="conn check failed (2/5)" +5:37PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +5:37PM ERR ClusterUpdater failed error="conn check failed (3/5)" +6:25PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +6:25PM ERR ClusterUpdater failed error="conn check failed (4/5)" +6:25PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +6:25PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +9:23AM INF 🐶 K9s starting up... +9:23AM INF ✅ Kubernetes connectivity +10:22AM INF 🐶 K9s starting up... +10:22AM INF ✅ Kubernetes connectivity +10:24AM INF 🐶 K9s starting up... +10:24AM INF ✅ Kubernetes connectivity +10:26AM ERR cp-automation-dp/emsuibht-20192-8lhc5 is not in a running state +10:31AM ERR Command failed error="exit status 130" +10:31AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-20192-8lhc5 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +10:31AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +10:39AM INF 🐶 K9s starting up... +10:39AM INF ✅ Kubernetes connectivity +10:39AM ERR no port-forward defined +10:42AM ERR Command failed error="exit status 137" +10:42AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-13467-tgj58 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +10:42AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +10:50AM ERR Command failed error="exit status 137" +10:50AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-18981-fcvdg -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +10:50AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +10:55AM ERR Command failed error="exit status 137" +10:55AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-9684-bthf4 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +10:55AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +11:03AM ERR Command failed error="exit status 137" +11:03AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-10827-hhj9x -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +11:03AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +11:09AM ERR Command failed error="exit status 137" +11:09AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-15352-tj594 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +11:09AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +11:12AM INF 🐶 K9s starting up... +11:12AM INF ✅ Kubernetes connectivity +11:16AM INF 🐶 K9s starting up... +11:16AM ERR config refine failed error="unable to activate context \"\": getcontext - invalid context specified: \"\"" +11:16AM ERR Fail to locate metrics-server error="Get \"http://localhost:8080/api\": dial tcp [::1]:8080: connect: connection refused" +11:16AM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp [::1]:8080: connect: connection refused" +11:16AM INF ✅ Kubernetes connectivity +11:16AM WRN Save failed. no active config detected +11:16AM ERR Fail to load global/context configuration error="unable to activate context \"\": getcontext - invalid context specified: \"\"\nGet \"http://localhost:8080/api\": dial tcp [::1]:8080: connect: connection refused\ncannot connect to context: \nk8s connection failed for context: " +11:16AM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +11:16AM ERR Load cluster resources - No API server connection +11:16AM ERR failed to list contexts error="no connection" +11:16AM WRN Unable to dial discovery API error="no connection to dial" +11:16AM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +11:16AM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +11:16AM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +11:16AM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +11:16AM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp [::1]:8080: connect: connection refused" +11:16AM ERR Load cluster resources - No API server connection +11:16AM WRN Unable to dial discovery API error="no connection to dial" +11:16AM WRN Plugins load failed: getcontext - invalid context specified: "" +11:16AM WRN Plugins load failed: getcontext - invalid context specified: "" +11:16AM WRN Save failed. no active config detected +11:16AM ERR nuking k9s shell pod error="getcontext - invalid context specified: \"\"" +11:16AM WRN Save failed. no active config detected +11:16AM INF 🐶 K9s starting up... +11:16AM INF ✅ Kubernetes connectivity +11:17AM INF 🐶 K9s starting up... +11:17AM INF ✅ Kubernetes connectivity +11:21AM ERR Command failed error="exit status 137" +11:21AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-17231-hw4r4 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +11:21AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +11:34AM ERR Command failed error="exit status 137" +11:34AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-11549-dpllq -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +11:34AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +11:38AM ERR cp-automation-dp/auto-ems-bht-emsinit-rvnzn is not in a running state +11:44AM ERR Command failed error="exit status 137" +11:44AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-29823-q84ps -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +11:44AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:34PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +1:34PM ERR ClusterUpdater failed error="conn check failed (1/5)" +1:51PM INF 🐶 K9s starting up... +1:51PM INF ✅ Kubernetes connectivity +1:52PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-uninstall-rpbs" +1:52PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-uninstall-mlin" +1:52PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-uninstall-zhgj" +1:52PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-uninstall-p5w0" +1:52PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-uninstall-jkvz" +1:52PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-uninstall-g5cc" +1:52PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-uninstall-eezv" +1:52PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-uninstall-dzry" +1:52PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-uninstall-dgrp" +1:52PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-uninstall-gvyr" +1:52PM ERR Command failed error="exit status 130" +1:52PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-21900-lfh5d -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:52PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:57PM ERR Command failed error="exit status 130" +1:57PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-21900-lfh5d -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:57PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:59PM ERR Command failed error="exit status 137" +1:59PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-2390-992sj -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:59PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:02PM ERR Command failed error="exit status 137" +3:02PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-26679-qrg4f -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:02PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:05PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-326-uninstall-on1w" +3:05PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-uninstall-fz7k" +3:05PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-324-uninstall-2axl" +3:05PM WRN Deleted (0) portforward for "cp-automation-dp/ems-cap-1-uninstall-shyo" +3:05PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-325-uninstall-qjf1" +3:05PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-uninstall-qv3k" +3:05PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-uninstall-yjfb" +3:05PM WRN Deleted (0) portforward for "cp-automation-dp/ems-cap-1-uninstall-qbga" +3:05PM WRN Deleted (0) portforward for "cp-automation-dp/ems-cap-1-uninstall-qm71" +3:05PM WRN Deleted (0) portforward for "cp-automation-dp/ems-cap-1-uninstall-muxc" +3:07PM ERR Command failed error="exit status 130" +3:07PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-1087-lrlbn -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +3:07PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +3:07PM ERR Command failed error="exit status 137" +3:07PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-1087-lrlbn -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:07PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:07PM WRN log-reader EOF error="stream closed EOF for cp-automation-dp/emsuiactivation-1087-lrlbn (run-test)" +3:10PM ERR Command failed error="exit status 130" +3:10PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-7241-xkj7t -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +3:10PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +3:19PM ERR Command failed error="exit status 137" +3:19PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-6148-rh6ph -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:19PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:19PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-329-emsinit" +3:19PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-329-preinstall-tdq1" +3:21PM ERR Command failed error="exit status 130" +3:21PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-3612-x6x5s -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +3:21PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +3:24PM ERR Command failed error="exit status 137" +3:24PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-3612-x6x5s -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:24PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:27PM ERR Command failed error="exit status 137" +3:27PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-1981-c6phj -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:27PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:29PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-330-uninstall-e1me" +3:43PM ERR Command failed error="exit status 137" +3:43PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-24921-r74r5 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:43PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:59PM ERR Command failed error="exit status 137" +3:59PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-9253-rx5xt -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:59PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:59PM ERR cp-automation-dp/emsuiactivation-9253-rx5xt is not in a running state +4:00PM ERR Command failed error="exit status 137" +4:00PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-10604-p26nt -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +4:00PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +4:03PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-333-uninstall-d3et" +4:03PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-334-uninstall-jnjc" +4:03PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-329-uninstall-x6ej" +4:03PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-332-uninstall-ygq0" +4:05PM ERR Command failed error="exit status 130" +4:05PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-31703-fcmfb -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +4:05PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +4:06PM ERR Command failed error="exit status 130" +4:06PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-31703-fcmfb -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +4:06PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +4:06PM ERR Command failed error="exit status 130" +4:06PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-27495-8rgnp -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +4:06PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +4:08PM ERR Command failed error="exit status 1" +4:08PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-21176-n9v9n -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +4:08PM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +4:38PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +4:38PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:38PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: i/o timeout" +4:38PM ERR Cluster updater failed! error="conn check failed (1/5)" +4:39PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +4:39PM ERR ClusterUpdater failed error="conn check failed (2/5)" +5:33PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +5:33PM ERR ClusterUpdater failed error="conn check failed (3/5)" +5:49PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)" +5:49PM ERR ClusterUpdater failed error="conn check failed (4/5)" +5:49PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +5:49PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +9:24AM ERR refresh failed for gvr: v1/pods error="ACCESS -- No API server connection" +9:24AM WRN Unable to dial discovery API error="no connection to dial" +9:24AM ERR Watcher failed for v1/pods -- ACCESS -- No API server connection error="ACCESS -- No API server connection" +9:24AM ERR refresh failed for gvr: batch/v1/jobs error="ACCESS -- No API server connection" +9:24AM ERR Watcher failed for batch/v1/jobs -- ACCESS -- No API server connection error="ACCESS -- No API server connection" +9:24AM ERR ACCESS -- No API server connection +9:24AM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +9:24AM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +9:24AM INF 🐶 K9s starting up... +9:24AM INF ✅ Kubernetes connectivity +9:36AM ERR Command failed error="exit status 137" +9:36AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-11009-9f79w -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +9:36AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +9:50AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-337-uninstall-pgqd" +9:50AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-337-uninstall-vtsy" +9:50AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-337-uninstall-ufty" +9:54AM ERR Command failed error="exit status 137" +9:54AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-5600-9nzfj -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +9:54AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +9:59AM ERR Command failed error="exit status 137" +9:59AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-25960-8s2w6 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +9:59AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +10:00AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-338-uninstall-anob" +10:00AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-339-uninstall-7n3v" +10:00AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-339-uninstall-lf3m" +10:00AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-338-uninstall-9zyf" +10:04AM INF 🐶 K9s starting up... +10:04AM INF ✅ Kubernetes connectivity +10:05AM ERR Command failed error="exit status 130" +10:05AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-21854-2hs9b -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +10:05AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +10:06AM INF 🐶 K9s starting up... +10:06AM INF ✅ Kubernetes connectivity +10:11AM ERR Command failed error="exit status 137" +10:11AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-17254-k6xc9 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +10:11AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +10:23AM INF 🐶 K9s starting up... +10:23AM INF ✅ Kubernetes connectivity +10:30AM ERR Command failed error="exit status 137" +10:30AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-13811-7x9ll -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +10:30AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +10:45AM WRN Deleted (0) portforward for "cp-automation-dp/act-uninstall-p5wb" +10:45AM WRN Deleted (0) portforward for "cp-automation-dp/act-uninstall-egp7" +10:45AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-341-uninstall-blq8" +10:45AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-341-uninstall-wc02" +10:45AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-340-uninstall-nl6d" +10:45AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-340-uninstall-kjuh" +10:45AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-341-uninstall-grtw" +10:45AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-341-uninstall-ny9j" +10:45AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-340-uninstall-zvbj" +10:45AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-340-uninstall-44do" +10:53AM ERR Command failed error="exit status 137" +10:53AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-14659-hlnm9 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +10:53AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +11:23AM INF 🐶 K9s starting up... +11:23AM INF ✅ Kubernetes connectivity +11:31AM ERR Command failed error="exit status 137" +11:31AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-6302-8j8fx -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +11:31AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +11:31AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-342-uninstall-ldmb" +11:31AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-342-uninstall-quiv" +11:31AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-343-uninstall-smrs" +11:31AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-343-emsinit" +11:31AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-343-preinstall-rvxg" +11:31AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-343-uninstall-pe59" +11:31AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-342-uninstall-xrhp" +11:31AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-342-uninstall-nzqe" +12:22PM ERR Command failed error="exit status 137" +12:22PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-8477-sslj4 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +12:22PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +12:27PM ERR Command failed error="exit status 130" +12:27PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-6615-dkl2c -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +12:27PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +12:31PM ERR Command failed error="exit status 130" +12:31PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-12326-fs9ll -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +12:31PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +12:34PM ERR Command failed error="exit status 130" +12:34PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-25367-2xk8d -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +12:34PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +12:38PM ERR Command failed error="exit status 137" +12:38PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-12326-fs9ll -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +12:38PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:58PM ERR Command failed error="exit status 130" +1:58PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-6611-kvknj -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:58PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:59PM ERR Command failed error="exit status 137" +1:59PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-10335-w979r -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:59PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +2:49PM ERR Command failed error="exit status 130" +2:49PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-3395-xt86p -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +2:49PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +2:51PM ERR Command failed error="exit status 137" +2:51PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-16210-t2sqh -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +2:51PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +2:54PM ERR Command failed error="exit status 130" +2:54PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-8237-mm26w -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +2:54PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +2:54PM ERR Command failed error="exit status 130" +2:54PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-18861-hth98 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +2:54PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +2:58PM ERR Command failed error="exit status 137" +2:58PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-5137-m782w -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +2:58PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +2:58PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-346-uninstall-7el0" +2:58PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-345-uninstall-skhg" +2:58PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-345-uninstall-wj4z" +2:58PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-344-uninstall-ewio" +2:58PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-347-uninstall-y1sr" +2:58PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-343-uninstall-sihg" +2:58PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-348-uninstall-8es7" +2:58PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-348-uninstall-xgb5" +2:58PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-348-uninstall-t7yq" +2:58PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-347-uninstall-onxr" +2:58PM WRN Deleted (0) portforward for "cp-automation-dp/act-uninstall-0vza" +2:58PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-347-uninstall-eys2" +2:58PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-346-uninstall-ykud" +2:58PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-345-uninstall-lp5u" +2:58PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-348-uninstall-rzqi" +2:58PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-346-uninstall-yngk" +2:58PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-346-uninstall-yf61" +2:58PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-346-uninstall-cgsv" +2:58PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-344-uninstall-zjjx" +2:58PM WRN Deleted (0) portforward for "cp-automation-dp/act-uninstall-lxdp" +2:58PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-347-uninstall-flq2" +2:58PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-347-uninstall-cdkh" +3:21PM ERR Command failed error="exit status 137" +3:21PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-29623-g6qn7 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:21PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:21PM INF 🐶 K9s starting up... +3:21PM INF ✅ Kubernetes connectivity +3:21PM ERR Command failed error="exit status 137" +3:21PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-29110-zvs88 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:21PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:23PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-351-uninstall-mcks" +3:23PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-350-uninstall-brlc" +3:23PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-350-uninstall-hwz5" +3:23PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-350-uninstall-gylr" +3:29PM ERR Command failed error="exit status 130" +3:29PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-2782-8t245 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +3:29PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +3:36PM ERR Command failed error="exit status 130" +3:36PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-13707-cg2mn -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +3:36PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +3:36PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-uninstall-dwlg" +3:36PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-uninstall-xa9n" +3:36PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-uninstall-w7yd" +3:56PM ERR Command failed error="exit status 130" +3:56PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-1047-ff2br -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +3:56PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +3:59PM ERR Command failed error="exit status 137" +3:59PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-9353-fqddq -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:59PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +4:01PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +4:01PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:01PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +4:01PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:02PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +4:02PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:02PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +4:02PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:04PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +4:04PM ERR ClusterUpdater failed error="conn check failed (2/5)" +4:04PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +4:04PM ERR ClusterUpdater failed error="conn check failed (2/5)" +4:04PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +4:04PM ERR ClusterUpdater failed error="conn check failed (3/5)" +4:08PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +4:08PM ERR ClusterUpdater failed error="conn check failed (3/5)" +5:02PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +5:02PM ERR ClusterUpdater failed error="conn check failed (4/5)" +5:02PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +5:02PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +5:03PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +5:03PM ERR ClusterUpdater failed error="conn check failed (4/5)" +5:03PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +5:03PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +8:58AM INF 🐶 K9s starting up... +8:58AM INF ✅ Kubernetes connectivity +8:59AM INF 🐶 K9s starting up... +8:59AM INF ✅ Kubernetes connectivity +9:02AM ERR Command failed error="exit status 130" +9:02AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-24423-zcmlg -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +9:02AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +9:12AM ERR Command failed error="exit status 130" +9:12AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-25332-wzqdc -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +9:12AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +9:13AM INF 🐶 K9s starting up... +9:13AM INF ✅ Kubernetes connectivity +9:13AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-21165" +9:13AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-5235" +9:13AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-24423" +9:13AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-25332" +9:13AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-4327" +9:13AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-11809" +9:13AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-28647" +9:13AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-12717" +9:14AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-uninstall-u5tf" +9:14AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-351-uninstall-miid" +9:36AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-12004" +9:36AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-11095" +9:38AM ERR Command failed error="exit status 130" +9:38AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-11370-6vfrd -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +9:38AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +9:38AM ERR Command failed error="exit status 130" +9:38AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-11370-6vfrd -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +9:38AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +9:41AM ERR Command failed error="exit status 137" +9:41AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-28208-9z49z -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +9:41AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +9:47AM ERR Command failed error="exit status 130" +9:47AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-11370-6vfrd -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +9:47AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +9:47AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-uninstall-boos" +9:47AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-uninstall-kc9c" +9:47AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-11370" +9:47AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-emsinit" +9:47AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-preinstall-db3j" +9:53AM ERR Command failed error="exit status 130" +9:53AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-415-fwp6t -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +9:53AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +9:53AM ERR Command failed error="exit status 130" +9:53AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-17253-79582 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +9:53AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +9:54AM ERR Command failed error="exit status 130" +9:54AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-1324-8mtc2 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +9:54AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +9:54AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-uninstall-jihl" +9:54AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-415" +9:54AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-17253" +9:54AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-1324" +10:00AM ERR Command failed error="exit status 130" +10:00AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-8328-fnt8r -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +10:00AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +10:00AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-uninstall-gjoz" +10:00AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-24257" +10:00AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-8328" +10:04AM ERR Command failed error="exit status 137" +10:04AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-13496-vkmkb -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +10:04AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +10:04AM ERR Command failed error="exit status 137" +10:04AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-30335-2h875 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +10:04AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +10:10AM ERR Command failed error="exit status 130" +10:10AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-20420-dqwjh -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +10:10AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +10:10AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-uninstall-uuon" +10:10AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-20420" +10:10AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-uninstall-8uln" +10:24AM INF 🐶 K9s starting up... +10:24AM INF ✅ Kubernetes connectivity +10:37AM ERR Command failed error="exit status 130" +10:37AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-16139-tjklc -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +10:37AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +10:38AM ERR Command failed error="exit status 130" +10:38AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-10034-28n96 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +10:38AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +10:38AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-10034" +10:38AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-16139" +10:38AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-uninstall-eacx" +10:38AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-preinstall-z8kl" +10:38AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-uninstall-dcjm" +10:38AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-uninstall-exag" +10:57AM ERR Command failed error="exit status 130" +10:57AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-4312-grjpl -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +10:57AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +10:57AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-4312" +11:02AM INF 🐶 K9s starting up... +11:02AM INF ✅ Kubernetes connectivity +11:02AM INF 🐶 K9s starting up... +11:02AM INF ✅ Kubernetes connectivity +11:04AM ERR Command failed error="exit status 130" +11:04AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-28927-gvsph -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +11:04AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +11:41AM INF 🐶 K9s starting up... +11:41AM INF ✅ Kubernetes connectivity +11:42AM WRN log-reader EOF error="stream closed EOF for cp-automation-dp/cp-proxy-client-credential-creation-5cg6c (post-install-job)" +11:48AM INF 🐶 K9s starting up... +11:48AM INF ✅ Kubernetes connectivity +11:48AM WRN log-reader EOF error="stream closed EOF for cp-automation-dp/tp-tibtunnel-5b489bf65c-vk5h4 (tibtunnel)" +11:50AM INF 🐶 K9s starting up... +11:50AM INF ✅ Kubernetes connectivity +11:54AM INF 🐶 K9s starting up... +11:54AM INF ✅ Kubernetes connectivity +12:33PM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/ems-test-ems-1 (ems-test-ems)" +12:33PM ERR logs-stream error="stream logs failed container \"auto-ems-bht-ems\" in pod \"auto-ems-bht-ems-1\" is waiting to start: PodInitializing for cp-automation-dp/auto-ems-bht-ems-1 (auto-ems-bht-ems)" +12:33PM ERR logs-stream error="stream logs failed container \"auto-ems-bht-ems\" in pod \"auto-ems-bht-ems-1\" is waiting to start: PodInitializing for cp-automation-dp/auto-ems-bht-ems-1 (auto-ems-bht-ems)" +12:33PM ERR logs-stream error="stream logs failed container \"auto-ems-bht-ems\" in pod \"auto-ems-bht-ems-1\" is waiting to start: PodInitializing for cp-automation-dp/auto-ems-bht-ems-1 (auto-ems-bht-ems)" +12:33PM ERR logs-stream error="stream logs failed container \"auto-ems-bht-ems\" in pod \"auto-ems-bht-ems-1\" is waiting to start: PodInitializing for cp-automation-dp/auto-ems-bht-ems-1 (auto-ems-bht-ems)" +12:35PM WRN Can't go back any further +12:36PM WRN log-reader EOF error="stream closed EOF for cp-automation-dp/auto-ems-bht-ems-1 (auto-ems-bht-ems)" +1:26PM ERR Command failed error="exit status 137" +1:26PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-22539-h5m9s -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:26PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:30PM ERR Command failed error="exit status 130" +1:30PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-6237-6vqgx -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:30PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:32PM ERR Command failed error="exit status 130" +1:32PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-5329-qz6x2 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:32PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:32PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-6237" +1:32PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-5329" +1:32PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-emsinit" +1:32PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-preinstall-0ocf" +1:32PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-uninstall-w9el" +1:32PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-uninstall-svro" +1:37PM ERR Command failed error="exit status 130" +1:37PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-26232-24dmr -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:37PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:37PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-26232-24dmr" +1:38PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-26232" +1:38PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-uninstall-pli9" +1:42PM ERR Command failed error="exit status 130" +1:42PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-3847-rjwhs -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:42PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:42PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-uninstall-ghoj" +1:42PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-3847" +1:42PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-emsinit" +1:42PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-preinstall-tiyu" +1:57PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-uninstall-iz9s" +1:57PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-uninstall-dnlx" +1:57PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-uninstall-gpu2" +1:57PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-uninstall-n8pw" +1:57PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-uninstall-sjqn" +2:01PM ERR Command failed error="exit status 130" +2:01PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-19973-kn8xn -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +2:01PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +2:01PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-uninstall-icp3" +2:01PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-19973" +2:11PM ERR Command failed error="exit status 130" +2:11PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-31827-nvj29 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +2:11PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +2:11PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-uninstall-5z1z" +2:11PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-uninstall-nyq6" +2:11PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-31827" +2:14PM ERR Command failed error="exit status 130" +2:14PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-22494-v5kv7 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +2:14PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +2:14PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-22494" +2:14PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-emsinit" +2:14PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-preinstall-dqvq" +2:24PM ERR Command failed error="exit status 130" +2:24PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-30615-m66sh -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +2:24PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +2:24PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-uninstall-reql" +2:24PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-uninstall-fp9q" +2:24PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-uninstall-n8kr" +2:24PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-30615" +2:24PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-emsinit" +2:24PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-preinstall-ubft" +2:24PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-uninstall-4gdq" +2:29PM ERR Command failed error="exit status 130" +2:29PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-27023-6d7zq -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +2:29PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +2:29PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-preinstall-tvcf" +2:29PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-uninstall-q3fu" +2:29PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-27023" +2:29PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-emsinit" +2:36PM ERR Command failed error="exit status 130" +2:36PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-11810-mgm7x -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +2:36PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +2:36PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-emsinit" +2:36PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-preinstall-n9ty" +2:36PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-11810" +2:36PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-uninstall-vii4" +2:50PM ERR Command failed error="exit status 137" +2:50PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-14441-xln9p -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +2:50PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +2:52PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-uninstall-ufom" +2:52PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-uninstall-zv85" +2:52PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-uninstall-3mfl" +2:52PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-preinstall-qprv" +2:52PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-8559" +2:52PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-6007" +2:52PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-uninstall-75wy" +2:52PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-uninstall-2vnt" +2:52PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-emsinit" +2:56PM ERR Command failed error="exit status 130" +2:56PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-1388-f29r5 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +2:56PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +2:56PM INF 🐶 K9s starting up... +2:56PM INF ✅ Kubernetes connectivity +2:56PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-1388" +3:01PM ERR Command failed error="exit status 130" +3:01PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-21785-rjzfg -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +3:01PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +3:01PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-emsinit" +3:01PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-preinstall-4ttw" +3:01PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-uninstall-gv4i" +3:01PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-21785" +3:15PM ERR Command failed error="exit status 137" +3:15PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-4910-2wd98 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:15PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:33PM INF 🐶 K9s starting up... +3:33PM INF ✅ Kubernetes connectivity +3:41PM ERR Command failed error="exit status 130" +3:41PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-3568-tsnnv -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +3:41PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +3:41PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-uninstall-rtk9" +3:41PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-uninstall-zzj3" +3:41PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-uninstall-xzg3" +3:41PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-3568" +3:41PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-uninstall-khsn" +3:41PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-uninstall-nvb6" +3:41PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-uninstall-sn80" +3:41PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-uninstall-ttvm" +3:41PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-uninstall-5p5q" +3:41PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-uninstall-tzep" +3:47PM INF 🐶 K9s starting up... +3:47PM INF ✅ Kubernetes connectivity +3:47PM ERR Command failed error="exit status 130" +3:47PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-15951-x897h -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +3:47PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +3:48PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-uninstall-ankc" +3:48PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-15951" +3:48PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-31880" +3:48PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-21" +4:04PM INF 🐶 K9s starting up... +4:04PM INF ✅ Kubernetes connectivity +4:04PM INF 🐶 K9s starting up... +4:04PM INF ✅ Kubernetes connectivity +4:08PM ERR can't connect to cluster error="Get \"https://vc-hamza.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +4:08PM ERR ClusterUpdater failed error="conn check failed (1/5)" +6:08PM ERR can't connect to cluster error="Get \"https://vc-msgdp-3.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +6:08PM ERR ClusterUpdater failed error="conn check failed (1/5)" +6:08PM ERR Command failed error="exit status 1" +6:08PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-25566-jwcst -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +6:08PM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +6:08PM WRN  Dial Failed! error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": read tcp 10.123.231.142:62430->10.97.130.64:443: read: operation timed out" +6:08PM ERR refresh failed for gvr: v1/pods error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": read tcp 10.123.231.142:62430->10.97.130.64:443: read: operation timed out" +6:08PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": read tcp 10.123.231.142:62430->10.97.130.64:443: read: operation timed out" +6:08PM ERR Cluster updater failed! error="conn check failed (1/5)" +6:08PM WRN Unable to dial discovery API error="no connection to dial" +6:08PM ERR Watcher failed for v1/pods -- ACCESS -- No API server connection error="ACCESS -- No API server connection" +6:08PM ERR can't connect to cluster error="Get \"https://vc-hamza.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +6:08PM ERR ClusterUpdater failed error="conn check failed (2/5)" +6:10PM ERR can't connect to cluster error="Get \"https://vc-hamza.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +6:10PM ERR ClusterUpdater failed error="conn check failed (3/5)" +6:10PM WRN namespace validation failed for: "vbmdp" error="user not authorized to list all namespaces" +6:10PM WRN namespace validation failed for: "vdp" error="user not authorized to list all namespaces" +6:10PM WRN namespace validation failed for: "msg-qa" error="user not authorized to list all namespaces" +6:10PM WRN namespace validation failed for: "msg-qa" error="user not authorized to list all namespaces" +6:10PM WRN namespace validation failed for: "cp1-ns" error="user not authorized to list all namespaces" +6:10PM WRN namespace validation failed for: "vdp" error="user not authorized to list all namespaces" +6:10PM WRN namespace validation failed for: "matt-dp" error="user not authorized to list all namespaces" +6:10PM WRN namespace validation failed for: "nperf12-my-ns" error="user not authorized to list all namespaces" +6:10PM WRN namespace validation failed for: "nperf15-my-ns" error="user not authorized to list all namespaces" +6:10PM WRN namespace validation failed for: "nperf15-my-ns" error="user not authorized to list all namespaces" +6:10PM WRN namespace validation failed for: "nperf15-my-ns" error="user not authorized to list all namespaces" +6:10PM WRN namespace validation failed for: "nperf15-my-ns" error="user not authorized to list all namespaces" +6:10PM ERR can't connect to cluster error="Get \"https://vc-msgdp-3.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +6:10PM ERR ClusterUpdater failed error="conn check failed (2/5)" +6:10PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +6:10PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +11:12AM ERR refresh failed for gvr: batch/v1/jobs error="ACCESS -- No API server connection" +11:12AM WRN Unable to dial discovery API error="no connection to dial" +11:12AM ERR Watcher failed for batch/v1/jobs -- ACCESS -- No API server connection error="ACCESS -- No API server connection" +11:12AM ERR ACCESS -- No API server connection +11:12AM ERR ACCESS -- No API server connection +11:19AM INF 🐶 K9s starting up... +11:19AM INF ✅ Kubernetes connectivity +11:27AM WRN log-reader EOF error="stream closed EOF for cp-automation-dp/emsuiqueues-25120-kmhtf (run-test)" +11:54AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiqueues-25120-kmhtf\": pods \"emsuiqueues-25120-kmhtf\" not found" +11:54AM ERR Watcher failed for containers -- failed to locate pod "cp-automation-dp/emsuiqueues-25120-kmhtf": pods "emsuiqueues-25120-kmhtf" not found error="failed to locate pod \"cp-automation-dp/emsuiqueues-25120-kmhtf\": pods \"emsuiqueues-25120-kmhtf\" not found" +11:54AM WRN log-reader EOF error="stream closed EOF for cp-automation-dp/emsuiqueues-25818-dmrxl (run-test)" +11:54AM WRN log-reader EOF error="stream closed EOF for cp-automation-dp/emsuiqueues-25818-dmrxl (run-test)" +11:54AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiqueues-25818-dmrxl\": pods \"emsuiqueues-25818-dmrxl\" not found" +11:54AM ERR Watcher failed for containers -- failed to locate pod "cp-automation-dp/emsuiqueues-25818-dmrxl": pods "emsuiqueues-25818-dmrxl" not found error="failed to locate pod \"cp-automation-dp/emsuiqueues-25818-dmrxl\": pods \"emsuiqueues-25818-dmrxl\" not found" +11:56AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-uninstall-7lyo" +11:56AM WRN Deleted (0) portforward for "cp-automation-dp/ems-test-uninstall-8pz5" +11:56AM WRN Deleted (0) portforward for "cp-automation-dp/ems-test-uninstall-robw" +12:59PM ERR Command failed error="exit status 137" +12:59PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueues-16489-xbmb7 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +12:59PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:00PM ERR Command failed error="exit status 137" +1:00PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueues-23025-c62dg -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:00PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:02PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueues-20686" +1:03PM ERR cp-automation-dp/emsuiqueues-24224-fj8ns is not in a running state +1:03PM ERR Command failed error="exit status 130" +1:03PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueues-24224-fj8ns -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:03PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:03PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueues-24224" +1:03PM ERR cp-automation-dp/emsuiqueues-9223-486wx is not in a running state +1:06PM ERR Command failed error="exit status 130" +1:06PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueues-9223-486wx -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:06PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:06PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueues-9223" +1:06PM ERR Command failed error="exit status 130" +1:06PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueues-3038-596h4 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:06PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:06PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueues-3038" +1:07PM ERR cp-automation-dp/emsuiqueues-21114-6zsfh is not in a running state +1:07PM ERR Command failed error="exit status 130" +1:07PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueues-21114-6zsfh -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:07PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:07PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueues-21114" +1:08PM ERR cp-automation-dp/emsuiqueues-8471-58rc9 is not in a running state +1:08PM ERR cp-automation-dp/emsuiqueues-8471-58rc9 is not in a running state +1:08PM ERR cp-automation-dp/emsuiqueues-8471-58rc9 is not in a running state +1:09PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueues-8471" +1:10PM ERR Command failed error="exit status 130" +1:10PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueues-20922-bhbpn -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:10PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:10PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueues-20922" +1:10PM ERR cp-automation-dp/emsuiqueues-3562-bgsp6 is not in a running state +1:10PM ERR cp-automation-dp/emsuiqueues-3562-bgsp6 is not in a running state +1:10PM ERR cp-automation-dp/emsuiqueues-3562-bgsp6 is not in a running state +1:10PM ERR cp-automation-dp/emsuiqueues-3562-bgsp6 is not in a running state +1:10PM ERR cp-automation-dp/emsuiqueues-3562-bgsp6 is not in a running state +1:10PM ERR cp-automation-dp/emsuiqueues-3562-bgsp6 is not in a running state +1:10PM ERR cp-automation-dp/emsuiqueues-3562-bgsp6 is not in a running state +1:12PM ERR Command failed error="exit status 130" +1:12PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueues-3562-bgsp6 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:12PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:12PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueues-3562" +1:12PM ERR cp-automation-dp/emsuiqueues-16070-bbzvk is not in a running state +1:12PM ERR cp-automation-dp/emsuiqueues-16070-bbzvk is not in a running state +1:12PM ERR cp-automation-dp/emsuiqueues-16070-bbzvk is not in a running state +1:12PM ERR cp-automation-dp/emsuiqueues-16070-bbzvk is not in a running state +1:12PM ERR Command failed error="exit status 130" +1:12PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueues-16070-bbzvk -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:12PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:12PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueues-16070" +1:13PM ERR Command failed error="exit status 130" +1:13PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueues-23359-zgs68 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:13PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:13PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueues-23359-zgs68" +1:15PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueues-23359" +1:15PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueues-11084" +1:16PM ERR Command failed error="exit status 137" +1:16PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueues-201-22qt7 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:16PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:16PM ERR cp-automation-dp/emsuiqueues-22666-pz8rl is not in a running state +1:16PM ERR cp-automation-dp/emsuiqueues-22666-pz8rl is not in a running state +1:16PM ERR cp-automation-dp/emsuiqueues-22666-pz8rl is not in a running state +1:17PM ERR Command failed error="exit status 137" +1:17PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueues-22666-pz8rl -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:17PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:18PM ERR Command failed error="exit status 137" +1:18PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueues-16848-wtx6c -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:18PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:21PM ERR Command failed error="exit status 130" +1:21PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueues-19344-vnbbf -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:21PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:21PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueues-19344" +1:22PM ERR cp-automation-dp/emsuiqueues-16157-gb6kz is not in a running state +1:22PM ERR cp-automation-dp/emsuiqueues-16157-gb6kz is not in a running state +1:22PM ERR Command failed error="exit status 130" +1:22PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueues-16157-gb6kz -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:22PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:22PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueues-16157-gb6kz" +1:22PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueues-16157" +1:23PM ERR Command failed error="exit status 130" +1:23PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueues-14979-c49qk -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:23PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:23PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueues-14979" +1:24PM ERR cp-automation-dp/emsuiqueues-4095-787qf is not in a running state +1:25PM ERR Command failed error="exit status 137" +1:25PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueues-4095-787qf -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:25PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:31PM ERR Command failed error="exit status 130" +1:31PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueues-32728-x67ng -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:31PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:31PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueues-32728" +1:32PM ERR Command failed error="exit status 130" +1:32PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueues-18771-b9r4g -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:32PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:32PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueues-18771" +1:34PM ERR Command failed error="exit status 137" +1:34PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueues-27394-kh9rg -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:34PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +2:06PM ERR Command failed error="exit status 137" +2:06PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueues-5725-s44pl -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +2:06PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +4:03PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +4:03PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:16PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded - error from a previous attempt: http2: client connection lost" +4:16PM ERR ClusterUpdater failed error="conn check failed (2/5)" +4:16PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +4:16PM ERR ClusterUpdater failed error="conn check failed (3/5)" +4:16PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +4:16PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +10:38AM INF 🐶 K9s starting up... +10:38AM INF ✅ Kubernetes connectivity +10:38AM ERR cp-automation-dp/emsuiactivation-11392-4gmfg is not in a running state +10:39AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +10:39AM ERR ClusterUpdater failed error="conn check failed (1/5)" +10:39AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable - error from a previous attempt: http2: client connection lost" +10:39AM ERR ClusterUpdater failed error="conn check failed (2/5)" +10:40AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +10:40AM ERR ClusterUpdater failed error="conn check failed (3/5)" +10:53AM INF 🐶 K9s starting up... +10:53AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +10:53AM INF ✅ Kubernetes connectivity +10:53AM WRN log-reader EOF error="stream closed EOF for default/hello-29294873-8xt4v (hello)" +10:54AM INF 🐶 K9s starting up... +10:54AM ERR config refine failed error="unable to activate context \"\": getcontext - invalid context specified: \"\"" +10:54AM ERR Fail to locate metrics-server error="Get \"http://localhost:8080/api\": dial tcp [::1]:8080: connect: connection refused" +10:54AM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp [::1]:8080: connect: connection refused" +10:54AM INF ✅ Kubernetes connectivity +10:54AM WRN Save failed. no active config detected +10:54AM ERR Fail to load global/context configuration error="unable to activate context \"\": getcontext - invalid context specified: \"\"\nGet \"http://localhost:8080/api\": dial tcp [::1]:8080: connect: connection refused\ncannot connect to context: \nk8s connection failed for context: " +10:54AM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +10:54AM ERR Load cluster resources - No API server connection +10:54AM ERR failed to list contexts error="no connection" +10:54AM WRN Unable to dial discovery API error="no connection to dial" +10:54AM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +10:54AM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +10:54AM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +10:54AM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +10:54AM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp [::1]:8080: connect: connection refused" +10:54AM ERR Load cluster resources - No API server connection +10:54AM WRN Unable to dial discovery API error="no connection to dial" +10:54AM WRN Plugins load failed: getcontext - invalid context specified: "" +10:54AM WRN Plugins load failed: getcontext - invalid context specified: "" +10:54AM WRN Plugins load failed: getcontext - invalid context specified: "" +10:54AM WRN Save failed. no active config detected +10:54AM ERR nuking k9s shell pod error="getcontext - invalid context specified: \"\"" +10:54AM WRN Save failed. no active config detected +10:54AM INF 🐶 K9s starting up... +10:54AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +10:54AM INF ✅ Kubernetes connectivity +11:34AM INF 🐶 K9s starting up... +11:34AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +11:34AM INF ✅ Kubernetes connectivity +11:34AM INF 🐶 K9s starting up... +11:34AM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +11:34AM INF ✅ Kubernetes connectivity +1:37PM ERR logs-stream error="stream logs failed container \"goweb\" in pod \"goweb-deployment-6778b6f59-plkq5\" is waiting to start: image can't be pulled for default/goweb-deployment-6778b6f59-plkq5 (goweb)" +1:37PM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for default/goweb-deployment-6778b6f59-plkq5 (goweb)" +1:37PM ERR Command failed error="exit status 1" +1:37PM ERR Exec failed "/usr/local/bin/kubectl exec --context kind-kind -it -n default goweb-deployment-6778b6f59-plkq5 -c goweb -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +1:37PM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +1:38PM INF 🐶 K9s starting up... +1:38PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +1:38PM INF ✅ Kubernetes connectivity +1:43PM ERR Command failed error="exit status 1" +1:43PM ERR Exec failed "/usr/local/bin/kubectl exec --context kind-kind -it -n default goweb-deployment-6778b6f59-spfrb -c goweb -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +1:43PM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +1:44PM WRN log-reader canceled error="stream canceled context canceled for default/goweb-deployment-57644c9c48-z7q95 (goweb)" +1:44PM ERR no port-forward defined +1:52PM ERR port 8080 is not available on host +1:52PM INF 🐶 K9s starting up... +1:52PM ERR Fail to locate metrics-server error="No metrics api group metrics.k8s.io found on cluster" +1:52PM INF ✅ Kubernetes connectivity +4:04PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +4:04PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:03PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: no route to host" +4:03PM ERR ClusterUpdater failed error="conn check failed (2/5)" +4:04PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +4:04PM ERR ClusterUpdater failed error="conn check failed (3/5)" +6:19PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +6:19PM ERR ClusterUpdater failed error="conn check failed (4/5)" +6:19PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +6:19PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +10:09AM INF 🐶 K9s starting up... +10:09AM INF ✅ Kubernetes connectivity +10:32AM INF 🐶 K9s starting up... +10:32AM INF ✅ Kubernetes connectivity +10:33AM WRN log-reader EOF error="stream closed EOF for cp1-ns/alertmanager-0 (copy-default-configuration)" +10:33AM WRN log-reader canceled error="stream canceled context canceled for cp1-ns/alertmanager-0 (alertmanager-server)" +1:10PM ERR can't connect to cluster error="Get \"https://vc-msgdp-3.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +1:10PM ERR ClusterUpdater failed error="conn check failed (1/5)" +1:10PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +1:10PM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:16PM INF 🐶 K9s starting up... +2:16PM INF ✅ Kubernetes connectivity +2:25PM WRN log-reader EOF error="stream closed EOF for cp1-ns/tp-hawk-infra-upgrade-8brw-rbvtf (hawk-upgrade)" +2:27PM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/test11-ems-1 (test11-ems)" +2:27PM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/test11-ems-1 (test11-ems)" +3:14PM INF 🐶 K9s starting up... +3:14PM INF ✅ Kubernetes connectivity +3:14PM INF 🐶 K9s starting up... +3:14PM INF ✅ Kubernetes connectivity +3:33PM INF 🐶 K9s starting up... +3:33PM INF ✅ Kubernetes connectivity +3:33PM ERR Command failed error="exit status 137" +3:33PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-8956-nmt2v -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:33PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:36PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-14952-w2d48" +3:36PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-14952" +3:37PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-22414-cvxb6" +3:40PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-20307" +3:40PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-22414" +4:05PM ERR Command failed error="exit status 137" +4:05PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-23846-p7t8x -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +4:05PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +4:36PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +4:36PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:36PM ERR can't connect to cluster error="Get \"https://vc-msgdp-3.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +4:36PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:36PM WRN k9s latest rev fetch failed Get "https://api.github.com/repos/derailed/k9s/releases/latest": dial tcp: lookup api.github.com: no such host +4:36PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +4:36PM ERR ClusterUpdater failed error="conn check failed (2/5)" +4:36PM ERR can't connect to cluster error="Get \"https://vc-msgdp-3.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)" +4:36PM ERR ClusterUpdater failed error="conn check failed (2/5)" +6:11PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +6:11PM ERR ClusterUpdater failed error="conn check failed (3/5)" +6:56PM ERR can't connect to cluster error="Get \"https://vc-msgdp-3.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded (Client.Timeout exceeded while awaiting headers)" +6:56PM ERR ClusterUpdater failed error="conn check failed (3/5)" +6:56PM WRN namespace validation failed for: "vbmdp" error="user not authorized to list all namespaces" +6:56PM WRN namespace validation failed for: "vdp" error="user not authorized to list all namespaces" +6:56PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +6:56PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +6:56PM WRN namespace validation failed for: "cp1-ns" error="user not authorized to list all namespaces" +6:56PM WRN namespace validation failed for: "vdp" error="user not authorized to list all namespaces" +6:56PM WRN namespace validation failed for: "msg-qa" error="user not authorized to list all namespaces" +6:56PM WRN namespace validation failed for: "nperf12-my-ns" error="user not authorized to list all namespaces" +6:56PM WRN namespace validation failed for: "nperf15-my-ns" error="user not authorized to list all namespaces" +6:56PM WRN namespace validation failed for: "nperf15-my-ns" error="user not authorized to list all namespaces" +6:56PM WRN namespace validation failed for: "nperf15-my-ns" error="user not authorized to list all namespaces" +6:56PM WRN namespace validation failed for: "nperf15-my-ns" error="user not authorized to list all namespaces" +6:56PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +6:56PM ERR ClusterUpdater failed error="conn check failed (4/5)" +6:56PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +6:56PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +9:29AM INF 🐶 K9s starting up... +9:29AM INF ✅ Kubernetes connectivity +9:31AM ERR Command failed error="exit status 130" +9:31AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-29662-hhvlm -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +9:31AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +9:31AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-29662" +9:50AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-19050" +9:55AM INF 🐶 K9s starting up... +9:55AM INF ✅ Kubernetes connectivity +9:57AM WRN log-reader EOF error="stream closed EOF for cp-automation-dp/auto-ems-act-bht-ems-1 (auto-ems-act-bht-ems)" +10:00AM ERR Tail logs failed error="pods \"auto-ems-act-bht-ems-1\" not found" +10:00AM ERR pods "auto-ems-act-bht-ems-1" not found +10:00AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/auto-ems-act-bht-ems-1\": pods \"auto-ems-act-bht-ems-1\" not found" +10:00AM ERR Watcher failed for containers -- failed to locate pod "cp-automation-dp/auto-ems-act-bht-ems-1": pods "auto-ems-act-bht-ems-1" not found error="failed to locate pod \"cp-automation-dp/auto-ems-act-bht-ems-1\": pods \"auto-ems-act-bht-ems-1\" not found" +10:12AM INF 🐶 K9s starting up... +10:12AM INF ✅ Kubernetes connectivity +10:12AM INF 🐶 K9s starting up... +10:13AM INF ✅ Kubernetes connectivity +10:13AM INF 🐶 K9s starting up... +10:13AM INF ✅ Kubernetes connectivity +10:14AM INF 🐶 K9s starting up... +10:14AM INF ✅ Kubernetes connectivity +10:15AM WRN log-reader canceled error="stream canceled context canceled for cp1-ns/tp-cp-msg-webserver-77866cd59d-8tl69 (msg-gems)" +3:32PM ERR can't connect to cluster error="Get \"https://985AB28484E1CDB95B3351CDADB1F32E.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +3:32PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:32PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +3:32PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:32PM WRN Unable to dial discovery API error="no connection to dial" +3:32PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp1-ns/tp-cp-msg-webserver-84c4bcf56-mkmxr\": ACCESS -- No API server connection" +3:32PM WRN reconciler exited error="context canceled" +4:50PM ERR can't connect to cluster error="Get \"https://985AB28484E1CDB95B3351CDADB1F32E.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": read tcp 10.123.231.142:55133->44.226.59.159:443: read: operation timed out" +4:50PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:50PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded (Client.Timeout exceeded while awaiting headers)" +4:50PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:50PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": read tcp 10.123.231.142:53010->10.97.130.64:443: read: operation timed out" +4:50PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:51PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)" +4:51PM ERR ClusterUpdater failed error="conn check failed (2/5)" +4:51PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)" +4:51PM ERR ClusterUpdater failed error="conn check failed (2/5)" +5:13PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +5:13PM ERR ClusterUpdater failed error="conn check failed (3/5)" +5:13PM ERR can't connect to cluster error="Get \"https://985AB28484E1CDB95B3351CDADB1F32E.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +5:13PM ERR ClusterUpdater failed error="conn check failed (1/5)" +5:13PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +5:13PM ERR ClusterUpdater failed error="conn check failed (3/5)" +5:33PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)" +5:33PM ERR ClusterUpdater failed error="conn check failed (4/5)" +5:33PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +5:33PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +5:33PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +5:33PM ERR ClusterUpdater failed error="conn check failed (4/5)" +5:33PM WRN namespace validation failed for: "cp1-ns" error="user not authorized to list all namespaces" +5:33PM WRN namespace validation failed for: "cp1-ns" error="user not authorized to list all namespaces" +5:35PM ERR can't connect to cluster error="Get \"https://985AB28484E1CDB95B3351CDADB1F32E.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +5:35PM ERR ClusterUpdater failed error="conn check failed (1/5)" +7:35PM ERR can't connect to cluster error="Get \"https://985AB28484E1CDB95B3351CDADB1F32E.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp: lookup 985AB28484E1CDB95B3351CDADB1F32E.gr7.us-west-2.eks.amazonaws.com: no such host" +7:35PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:34AM ERR can't connect to cluster error="Get \"https://985AB28484E1CDB95B3351CDADB1F32E.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +3:34AM ERR ClusterUpdater failed error="conn check failed (1/5)" +5:22AM ERR can't connect to cluster error="Get \"https://985AB28484E1CDB95B3351CDADB1F32E.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp: lookup 985AB28484E1CDB95B3351CDADB1F32E.gr7.us-west-2.eks.amazonaws.com: no such host - error from a previous attempt: http2: client connection lost" +5:22AM ERR ClusterUpdater failed error="conn check failed (2/5)" +8:59AM ERR can't connect to cluster error="Get \"https://985AB28484E1CDB95B3351CDADB1F32E.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": read tcp 192.168.1.110:57709->44.226.59.159:443: read: operation timed out" +8:59AM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:59AM ERR can't connect to cluster error="Get \"https://985AB28484E1CDB95B3351CDADB1F32E.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp: lookup 985AB28484E1CDB95B3351CDADB1F32E.gr7.us-west-2.eks.amazonaws.com: no such host" +8:59AM ERR ClusterUpdater failed error="conn check failed (2/5)" +9:04AM ERR can't connect to cluster error="Get \"https://985AB28484E1CDB95B3351CDADB1F32E.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +9:04AM ERR ClusterUpdater failed error="conn check failed (1/5)" +9:33AM ERR can't connect to cluster error="Get \"https://985AB28484E1CDB95B3351CDADB1F32E.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +9:33AM ERR ClusterUpdater failed error="conn check failed (1/5)" +9:33AM ERR can't connect to cluster error="Get \"https://985AB28484E1CDB95B3351CDADB1F32E.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": read tcp 10.123.231.142:58362->35.163.47.144:443: read: can't assign requested address" +9:33AM ERR ClusterUpdater failed error="conn check failed (2/5)" +9:33AM ERR can't connect to cluster error="Get \"https://985AB28484E1CDB95B3351CDADB1F32E.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp: lookup 985AB28484E1CDB95B3351CDADB1F32E.gr7.us-west-2.eks.amazonaws.com: no such host" +9:33AM ERR ClusterUpdater failed error="conn check failed (3/5)" +9:33AM ERR can't connect to cluster error="Get \"https://985AB28484E1CDB95B3351CDADB1F32E.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp: lookup 985AB28484E1CDB95B3351CDADB1F32E.gr7.us-west-2.eks.amazonaws.com: no such host" +9:33AM ERR ClusterUpdater failed error="conn check failed (4/5)" +9:36AM ERR can't connect to cluster error="Get \"https://985AB28484E1CDB95B3351CDADB1F32E.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +9:36AM ERR ClusterUpdater failed error="conn check failed (1/5)" +9:39AM ERR can't connect to cluster error="Get \"https://985AB28484E1CDB95B3351CDADB1F32E.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +9:39AM ERR ClusterUpdater failed error="conn check failed (1/5)" +9:40AM ERR can't connect to cluster error="Get \"https://985AB28484E1CDB95B3351CDADB1F32E.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp: lookup 985AB28484E1CDB95B3351CDADB1F32E.gr7.us-west-2.eks.amazonaws.com: no such host" +9:40AM ERR ClusterUpdater failed error="conn check failed (2/5)" +9:40AM ERR can't connect to cluster error="Get \"https://985AB28484E1CDB95B3351CDADB1F32E.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp: lookup 985AB28484E1CDB95B3351CDADB1F32E.gr7.us-west-2.eks.amazonaws.com: no such host" +9:40AM ERR ClusterUpdater failed error="conn check failed (3/5)" +10:24AM ERR can't connect to cluster error="Get \"https://985AB28484E1CDB95B3351CDADB1F32E.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +10:24AM ERR ClusterUpdater failed error="conn check failed (1/5)" +10:26AM ERR can't connect to cluster error="Get \"https://985AB28484E1CDB95B3351CDADB1F32E.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +10:26AM ERR ClusterUpdater failed error="conn check failed (1/5)" +10:46AM WRN  Dial Failed! error="Post \"https://985AB28484E1CDB95B3351CDADB1F32E.gr7.us-west-2.eks.amazonaws.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": context deadline exceeded" +10:46AM ERR refresh failed for gvr: v1/pods error="Post \"https://985AB28484E1CDB95B3351CDADB1F32E.gr7.us-west-2.eks.amazonaws.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": context deadline exceeded" +10:46AM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp1-ns\":\"v1/pods\"" +10:46AM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp1-ns\":\"v1/pods\"" +10:46AM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp1-ns\":\"v1/pods\"" +10:46AM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp1-ns\":\"v1/pods\"" +10:46AM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp1-ns\":\"v1/pods\"" +10:46AM ERR can't connect to cluster error="Get \"https://985AB28484E1CDB95B3351CDADB1F32E.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +10:46AM ERR ClusterUpdater failed error="conn check failed (1/5)" +10:46AM WRN reconciler exited error="context canceled" +10:48AM ERR can't connect to cluster error="Get \"https://985AB28484E1CDB95B3351CDADB1F32E.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +10:48AM ERR ClusterUpdater failed error="conn check failed (1/5)" +10:50AM ERR can't connect to cluster error="Get \"https://985AB28484E1CDB95B3351CDADB1F32E.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +10:50AM ERR ClusterUpdater failed error="conn check failed (1/5)" +11:51AM INF 🐶 K9s starting up... +11:51AM INF ✅ Kubernetes connectivity +11:52AM ERR Command failed error="exit status 130" +11:52AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-10166-wplvh -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +11:52AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +11:55AM ERR Command failed error="exit status 130" +11:55AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-10166-wplvh -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +11:55AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +11:55AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-10166-wplvh" +12:06PM ERR Command failed error="exit status 130" +12:06PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-4116-j5sw4 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +12:06PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +12:06PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-4116-j5sw4" +12:11PM ERR can't connect to cluster error="Get \"https://985AB28484E1CDB95B3351CDADB1F32E.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +12:11PM ERR ClusterUpdater failed error="conn check failed (1/5)" +12:11PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +12:11PM ERR ClusterUpdater failed error="conn check failed (1/5)" +12:12PM ERR can't connect to cluster error="Get \"https://985AB28484E1CDB95B3351CDADB1F32E.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +12:12PM ERR ClusterUpdater failed error="conn check failed (1/5)" +12:12PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +12:12PM ERR ClusterUpdater failed error="conn check failed (1/5)" +12:15PM ERR can't connect to cluster error="Get \"https://985AB28484E1CDB95B3351CDADB1F32E.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +12:15PM ERR ClusterUpdater failed error="conn check failed (1/5)" +12:45PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +12:45PM ERR ClusterUpdater failed error="conn check failed (1/5)" +1:05PM WRN  Dial Failed! error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": context deadline exceeded" +1:05PM ERR refresh failed for gvr: v1/pods error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": context deadline exceeded" +1:05PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +1:05PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +1:05PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +1:05PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +1:05PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +1:05PM ERR refresh failed for gvr: v1/pods error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +1:05PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +1:05PM ERR ClusterUpdater failed error="conn check failed (1/5)" +1:05PM WRN reconciler exited error="context canceled" +1:05PM ERR can't connect to cluster error="Get \"https://985AB28484E1CDB95B3351CDADB1F32E.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +1:05PM ERR ClusterUpdater failed error="conn check failed (1/5)" +1:30PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +1:30PM ERR ClusterUpdater failed error="conn check failed (1/5)" +1:30PM ERR can't connect to cluster error="Get \"https://985AB28484E1CDB95B3351CDADB1F32E.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +1:30PM ERR ClusterUpdater failed error="conn check failed (1/5)" +1:40PM ERR Command failed error="exit status 130" +1:40PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-2482-skj8m -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:40PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:41PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-2482" +1:44PM ERR Command failed error="exit status 130" +1:44PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-27363-bnbbn -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:44PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:44PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-27363" +1:53PM ERR Command failed error="exit status 130" +1:53PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-12248-sb652 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:53PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:53PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-12248" +1:53PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-preinstall-3etl" +1:53PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-uninstall-r05z" +1:53PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-emsinit" +1:56PM INF 🐶 K9s starting up... +1:56PM INF ✅ Kubernetes connectivity +1:59PM ERR Command failed error="exit status 130" +1:59PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-7958-qmzn8 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:59PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:59PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-7958" +2:23PM INF 🐶 K9s starting up... +2:23PM INF ✅ Kubernetes connectivity +2:26PM INF 🐶 K9s starting up... +2:26PM INF ✅ Kubernetes connectivity +3:35PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +3:35PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:38PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +3:38PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:38PM WRN log-reader canceled error="stream canceled context canceled for cp1-ns/tp-cp-msg-webserver-6d6b445948-7twrc (msg-gems)" +3:39PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +3:39PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:39PM WRN log-reader canceled error="stream canceled context canceled for cp1-ns/tp-cp-msg-webserver-6d6b445948-7twrc (msg-gems)" +3:39PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +3:39PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:39PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +3:39PM ERR ClusterUpdater failed error="conn check failed (2/5)" +3:39PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable - error from a previous attempt: http2: client connection lost" +3:39PM ERR ClusterUpdater failed error="conn check failed (2/5)" +3:39PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +3:39PM ERR ClusterUpdater failed error="conn check failed (3/5)" +3:40PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +3:40PM ERR ClusterUpdater failed error="conn check failed (3/5)" +3:54PM INF 🐶 K9s starting up... +3:54PM INF ✅ Kubernetes connectivity +3:54PM INF 🐶 K9s starting up... +3:54PM INF ✅ Kubernetes connectivity +3:55PM WRN Deleted (0) portforward for "cp-automation-dp/tp-msg-gateway-0" +4:15PM WRN  Dial Failed! error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": context deadline exceeded" +4:15PM WRN Fail CRDs load error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": context deadline exceeded" +4:15PM WRN Fail CRDs load error="[list] access denied on resource \"-\":\"apiextensions.k8s.io/v1/customresourcedefinitions\"" +4:16PM WRN Fail CRDs load error="[list] access denied on resource \"-\":\"apiextensions.k8s.io/v1/customresourcedefinitions\"" +4:16PM WRN Fail CRDs load error="[list] access denied on resource \"-\":\"apiextensions.k8s.io/v1/customresourcedefinitions\"" +4:16PM WRN Fail CRDs load error="[list] access denied on resource \"-\":\"apiextensions.k8s.io/v1/customresourcedefinitions\"" +4:16PM WRN Fail CRDs load error="[list] access denied on resource \"-\":\"apiextensions.k8s.io/v1/customresourcedefinitions\"" +4:17PM WRN Fail CRDs load error="[list] access denied on resource \"-\":\"apiextensions.k8s.io/v1/customresourcedefinitions\"" +4:17PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +4:17PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:18PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +4:18PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:18PM WRN log-reader canceled error="stream canceled context canceled for cp1-ns/tp-cp-msg-webserver-6d6b445948-7twrc (msg-gems)" +4:19PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable - error from a previous attempt: http2: client connection lost" +4:19PM ERR ClusterUpdater failed error="conn check failed (2/5)" +4:19PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +4:19PM ERR ClusterUpdater failed error="conn check failed (1/5)" +5:52PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": read tcp 10.123.231.142:52563->10.97.130.64:443: read: operation timed out" +5:52PM ERR ClusterUpdater failed error="conn check failed (1/5)" +5:52PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": read tcp 10.123.231.142:52570->10.97.130.64:443: read: operation timed out" +5:52PM WRN log-reader canceled error="stream canceled read tcp 10.123.231.142:52570->10.97.130.64:443: read: operation timed out for cp1-ns/tp-cp-msg-webserver-6d6b445948-7twrc (msg-gems)" +5:52PM ERR ClusterUpdater failed error="conn check failed (1/5)" +5:52PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": read tcp 10.123.231.142:52569->10.97.130.64:443: read: operation timed out" +5:52PM ERR ClusterUpdater failed error="conn check failed (1/5)" +6:16PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +6:16PM ERR ClusterUpdater failed error="conn check failed (2/5)" +6:55PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +6:55PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +6:55PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +6:55PM ERR ClusterUpdater failed error="conn check failed (2/5)" +6:55PM ERR ClusterUpdater failed error="conn check failed (3/5)" +6:55PM ERR ClusterUpdater failed error="conn check failed (2/5)" +6:55PM WRN namespace validation failed for: "cp1-ns" error="user not authorized to list all namespaces" +6:55PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +6:55PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +6:55PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +6:55PM WRN namespace validation failed for: "cp1-ns" error="user not authorized to list all namespaces" +6:55PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +3:03PM INF 🐶 K9s starting up... +3:03PM INF ✅ Kubernetes connectivity +3:16PM INF 🐶 K9s starting up... +3:16PM INF ✅ Kubernetes connectivity +3:37PM ERR Command failed error="exit status 137" +3:37PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-21787-2kv8f -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:37PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:43PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +3:43PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:43PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +3:43PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:43PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": read tcp 10.123.231.142:62068->10.97.130.64:443: read: can't assign requested address" +3:43PM ERR ClusterUpdater failed error="conn check failed (2/5)" +3:43PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +3:43PM ERR ClusterUpdater failed error="conn check failed (2/5)" +4:03PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +4:03PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:04PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)" +4:04PM ERR ClusterUpdater failed error="conn check failed (2/5)" +6:02PM ERR Command failed error="exit status 1" +6:02PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-3837-gcqgq -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +6:02PM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +6:02PM WRN  Dial Failed! error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 10.97.130.64:443: connect: network is unreachable" +6:02PM ERR refresh failed for gvr: v1/pods error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": dial tcp 10.97.130.64:443: connect: network is unreachable" +6:02PM ERR Watcher failed for v1/pods -- [list] access denied on resource "cp-automation-dp":"v1/pods" error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +6:02PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +6:02PM ERR Cluster updater failed! error="conn check failed (1/5)" +6:31PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded (Client.Timeout exceeded while awaiting headers)" +6:31PM ERR ClusterUpdater failed error="conn check failed (3/5)" +6:31PM WRN namespace validation failed for: "vbmdp" error="user not authorized to list all namespaces" +6:31PM WRN namespace validation failed for: "vdp" error="user not authorized to list all namespaces" +6:31PM WRN namespace validation failed for: "msg-qa" error="user not authorized to list all namespaces" +6:31PM WRN namespace validation failed for: "nperf12-my-ns" error="user not authorized to list all namespaces" +6:31PM WRN namespace validation failed for: "nperf12-my-ns" error="user not authorized to list all namespaces" +6:31PM WRN namespace validation failed for: "nperf12-my-ns" error="user not authorized to list all namespaces" +6:31PM WRN namespace validation failed for: "nperf12-my-ns" error="user not authorized to list all namespaces" +6:31PM WRN namespace validation failed for: "cp1-ns" error="user not authorized to list all namespaces" +6:31PM WRN namespace validation failed for: "matt-dp" error="user not authorized to list all namespaces" +6:31PM WRN namespace validation failed for: "vdp" error="user not authorized to list all namespaces" +6:31PM WRN namespace validation failed for: "nperf12-my-ns" error="user not authorized to list all namespaces" +6:31PM WRN namespace validation failed for: "nperf15-my-ns" error="user not authorized to list all namespaces" +6:31PM WRN namespace validation failed for: "nperf15-my-ns" error="user not authorized to list all namespaces" +6:31PM WRN namespace validation failed for: "nperf15-my-ns" error="user not authorized to list all namespaces" +6:31PM WRN namespace validation failed for: "nperf15-my-ns" error="user not authorized to list all namespaces" +8:45AM ERR refresh failed for gvr: batch/v1/jobs error="ACCESS -- No API server connection" +8:45AM WRN Unable to dial discovery API error="no connection to dial" +8:45AM ERR Watcher failed for batch/v1/jobs -- ACCESS -- No API server connection error="ACCESS -- No API server connection" +8:45AM ERR ACCESS -- No API server connection +8:45AM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +8:45AM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +8:45AM INF 🐶 K9s starting up... +8:45AM INF ✅ Kubernetes connectivity +9:41AM ERR Command failed error="exit status 1" +9:41AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-25563-z9pgs -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +9:41AM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +9:41AM WRN  Dial Failed! error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": read tcp 10.123.231.142:57581->10.97.130.64:443: read: connection reset by peer" +9:41AM ERR refresh failed for gvr: v1/pods error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": read tcp 10.123.231.142:57581->10.97.130.64:443: read: connection reset by peer" +9:41AM ERR Watcher failed for v1/pods -- [list] access denied on resource "cp-automation-dp":"v1/pods" error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +10:51AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +10:51AM ERR ClusterUpdater failed error="conn check failed (1/5)" +12:01PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +12:01PM ERR ClusterUpdater failed error="conn check failed (1/5)" +12:06PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +12:06PM ERR ClusterUpdater failed error="conn check failed (1/5)" +1:05PM INF 🐶 K9s starting up... +1:05PM INF ✅ Kubernetes connectivity +1:17PM INF 🐶 K9s starting up... +1:17PM INF ✅ Kubernetes connectivity +1:18PM WRN log-reader canceled error="stream canceled context canceled for eks-v15/emsv15-ems-1 (emsv15-ems)" +1:54PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +1:54PM ERR ClusterUpdater failed error="conn check failed (1/5)" +1:54PM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +1:54PM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:19PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +2:19PM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:19PM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +2:19PM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:31PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +2:31PM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:31PM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +2:31PM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:36PM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +2:36PM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:36PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +2:36PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:26PM WRN  Dial Failed! error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": context deadline exceeded" +4:26PM ERR refresh failed for gvr: v1/pods error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": context deadline exceeded" +4:26PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": read tcp 10.123.231.142:65368->10.97.130.64:443: read: operation timed out" +4:26PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:26PM WRN reconciler exited error="context canceled" +4:27PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +4:27PM ERR ClusterUpdater failed error="conn check failed (2/5)" +6:06PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded (Client.Timeout exceeded while awaiting headers)" +6:06PM ERR ClusterUpdater failed error="conn check failed (3/5)" +6:06PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +6:06PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +8:59AM INF 🐶 K9s starting up... +8:59AM INF ✅ Kubernetes connectivity +9:10AM ERR Command failed error="exit status 130" +9:10AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-18151-jlbnc -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +9:10AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +9:10AM ERR Command failed error="exit status 130" +9:10AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-18151-jlbnc -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +9:10AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +9:15AM ERR Command failed error="exit status 130" +9:15AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-19355-sn2zp -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +9:15AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +9:15AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-365-preinstall-surv" +9:15AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-365-emsinit" +9:15AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-365-uninstall-gek3" +9:17AM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-jhn1lxob-uninstall-gpeu" +9:17AM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-one-uninstall-hl5j" +9:17AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-365-uninstall-bgfa" +9:17AM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-qiedy0zi-uninstall-gnzo" +9:17AM WRN Deleted (0) portforward for "cp-automation-dp/cp-auto-ems-kwkpbnbw-uninstall-be30" +9:28AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +9:28AM ERR ClusterUpdater failed error="conn check failed (1/5)" +9:28AM INF 🐶 K9s starting up... +9:28AM INF ✅ Kubernetes connectivity +9:32AM ERR Command failed error="exit status 130" +9:32AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-1647-9t7ck -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +9:32AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +9:40AM ERR Command failed error="exit status 137" +9:40AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-1647-9t7ck -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +9:40AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +9:55AM ERR Command failed error="exit status 130" +9:55AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-19688-jnkg2 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +9:55AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +9:55AM ERR Command failed error="exit status 137" +9:55AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-10428-qmdth -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +9:55AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +9:55AM ERR Command failed error="exit status 130" +9:55AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-19688-jnkg2 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +9:55AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +9:55AM ERR Command failed error="exit status 130" +9:55AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-12758-tsv55 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +9:55AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +9:56AM ERR Command failed error="exit status 130" +9:56AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-19688-jnkg2 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +9:56AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +9:56AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-367-uninstall-wgnj" +9:56AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-366-uninstall-rvgq" +9:56AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-366-uninstall-rbcx" +9:56AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-367-emsinit" +9:56AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-367-preinstall-5auv" +9:56AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-367-uninstall-0fxj" +10:04AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +10:04AM ERR ClusterUpdater failed error="conn check failed (1/5)" +10:06AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +10:06AM ERR ClusterUpdater failed error="conn check failed (1/5)" +10:07AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +10:07AM ERR ClusterUpdater failed error="conn check failed (1/5)" +10:07AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable - error from a previous attempt: http2: client connection lost" +10:07AM ERR ClusterUpdater failed error="conn check failed (2/5)" +10:14AM ERR Command failed error="exit status 137" +10:14AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-21884-7v757 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +10:14AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +10:15AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-21884-7v757\": pods \"emsuibmdpbht-21884-7v757\" not found" +10:15AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-21884-7v757\": pods \"emsuibmdpbht-21884-7v757\" not found" +10:15AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-21884-7v757\": pods \"emsuibmdpbht-21884-7v757\" not found" +10:15AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-21884-7v757\": pods \"emsuibmdpbht-21884-7v757\" not found" +10:15AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-21884-7v757\": pods \"emsuibmdpbht-21884-7v757\" not found" +10:15AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-21884-7v757\": pods \"emsuibmdpbht-21884-7v757\" not found" +10:15AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-21884-7v757\": pods \"emsuibmdpbht-21884-7v757\" not found" +10:15AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-21884-7v757\": pods \"emsuibmdpbht-21884-7v757\" not found" +10:15AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-21884-7v757\": pods \"emsuibmdpbht-21884-7v757\" not found" +10:15AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-21884-7v757\": pods \"emsuibmdpbht-21884-7v757\" not found" +10:15AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-21884-7v757\": pods \"emsuibmdpbht-21884-7v757\" not found" +10:15AM WRN reconciler exited error="context canceled" +10:17AM ERR Command failed error="exit status 130" +10:17AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-20189-s8r4q -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +10:17AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +10:21AM ERR Command failed error="exit status 1" +10:21AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-777-nhlgw -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +10:21AM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +10:22AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +10:22AM ERR Cluster updater failed! error="conn check failed (1/5)" +10:22AM WRN  Dial Failed! error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": context deadline exceeded" +10:22AM ERR refresh failed for gvr: v1/pods error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": context deadline exceeded" +10:22AM WRN Unable to dial discovery API error="no connection to dial" +10:22AM ERR Watcher failed for v1/pods -- ACCESS -- No API server connection error="ACCESS -- No API server connection" +10:24AM ERR refresh failed for gvr: batch/v1/jobs error="ACCESS -- No API server connection" +10:24AM ERR Watcher failed for batch/v1/jobs -- ACCESS -- No API server connection error="ACCESS -- No API server connection" +10:24AM ERR ACCESS -- No API server connection +10:24AM ERR ACCESS -- No API server connection +10:24AM ERR ACCESS -- No API server connection +10:24AM ERR ACCESS -- No API server connection +10:24AM ERR ACCESS -- No API server connection +10:24AM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +10:24AM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +10:24AM INF 🐶 K9s starting up... +10:24AM INF ✅ Kubernetes connectivity +10:34AM ERR Command failed error="exit status 137" +10:34AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-777-nhlgw -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +10:34AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +10:42AM ERR Command failed error="exit status 137" +10:42AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-8112-dh7mv -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +10:42AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +10:50AM ERR Command failed error="exit status 137" +10:50AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-15281-tfnwq -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +10:50AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +11:32AM ERR Command failed error="exit status 1" +11:32AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-15782-gbf5f -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +11:32AM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +11:38AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +11:38AM ERR ClusterUpdater failed error="conn check failed (1/5)" +11:39AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable - error from a previous attempt: http2: client connection lost" +11:39AM ERR ClusterUpdater failed error="conn check failed (2/5)" +11:40AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +11:40AM ERR ClusterUpdater failed error="conn check failed (1/5)" +11:46AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +11:46AM ERR ClusterUpdater failed error="conn check failed (1/5)" +11:47AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +11:47AM ERR ClusterUpdater failed error="conn check failed (1/5)" +11:49AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +11:49AM ERR ClusterUpdater failed error="conn check failed (1/5)" +11:49AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +11:49AM ERR ClusterUpdater failed error="conn check failed (2/5)" +11:49AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +11:49AM ERR ClusterUpdater failed error="conn check failed (3/5)" +11:56AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-370-uninstall-pvxi" +11:56AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-370-uninstall-wffz" +11:56AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-369-uninstall-7olh" +11:56AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-372-uninstall-m63a" +11:56AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-372-uninstall-2fxx" +11:56AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-367-uninstall-v1ul" +11:56AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-369-uninstall-cbyy" +12:05PM ERR Command failed error="exit status 130" +12:05PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-14347-hh9rh -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +12:05PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +12:05PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-14347" +12:06PM ERR Command failed error="exit status 130" +12:06PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-7642-5vhr4 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +12:06PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +12:06PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-7642" +12:31PM ERR Command failed error="exit status 130" +12:31PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-1806-vlgrf -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +12:31PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +12:31PM ERR Command failed error="exit status 130" +12:31PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-4365-hfhl6 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +12:31PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +12:36PM ERR Command failed error="exit status 137" +12:36PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-26621-l58nx -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +12:36PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +12:36PM ERR Command failed error="exit status 130" +12:36PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-15565-8whhb -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +12:36PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +12:37PM ERR Command failed error="exit status 137" +12:37PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-12355-9fwb6 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +12:37PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +12:41PM ERR Command failed error="exit status 130" +12:41PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-9433-qk8l5 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +12:41PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +12:41PM ERR Command failed error="exit status 130" +12:41PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-21943-c8gx7 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +12:41PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +12:47PM ERR Command failed error="exit status 1" +12:47PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-11336-fsd9c -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +12:47PM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +12:47PM INF 🐶 K9s starting up... +12:47PM INF ✅ Kubernetes connectivity +1:00PM ERR Command failed error="exit status 137" +1:00PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-11336-fsd9c -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:00PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:00PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-11336-fsd9c\": pods \"emsuiactivation-11336-fsd9c\" not found" +1:00PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-11336-fsd9c\": pods \"emsuiactivation-11336-fsd9c\" not found" +1:00PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-11336-fsd9c\": pods \"emsuiactivation-11336-fsd9c\" not found" +1:00PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-11336-fsd9c\": pods \"emsuiactivation-11336-fsd9c\" not found" +1:00PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-11336-fsd9c\": pods \"emsuiactivation-11336-fsd9c\" not found" +1:00PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-11336-fsd9c\": pods \"emsuiactivation-11336-fsd9c\" not found" +1:00PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-11336-fsd9c\": pods \"emsuiactivation-11336-fsd9c\" not found" +1:01PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-11336-fsd9c\": pods \"emsuiactivation-11336-fsd9c\" not found" +1:01PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-11336-fsd9c\": pods \"emsuiactivation-11336-fsd9c\" not found" +1:01PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-11336-fsd9c\": pods \"emsuiactivation-11336-fsd9c\" not found" +1:01PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-11336-fsd9c\": pods \"emsuiactivation-11336-fsd9c\" not found" +1:01PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-11336-fsd9c\": pods \"emsuiactivation-11336-fsd9c\" not found" +1:02PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-11336-fsd9c\": pods \"emsuiactivation-11336-fsd9c\" not found" +1:02PM WRN reconciler exited error="failed to locate pod \"cp-automation-dp/emsuiactivation-11336-fsd9c\": pods \"emsuiactivation-11336-fsd9c\" not found" +1:02PM ERR failed to locate pod "cp-automation-dp/emsuiactivation-11336-fsd9c": pods "emsuiactivation-11336-fsd9c" not found +1:11PM ERR Command failed error="exit status 137" +1:11PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-5581-l9z7r -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:11PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:11PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-5581-l9z7r\": pods \"emsuibht-5581-l9z7r\" not found" +1:11PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-5581-l9z7r\": pods \"emsuibht-5581-l9z7r\" not found" +1:11PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-5581-l9z7r\": pods \"emsuibht-5581-l9z7r\" not found" +1:11PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-5581-l9z7r\": pods \"emsuibht-5581-l9z7r\" not found" +1:11PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-5581-l9z7r\": pods \"emsuibht-5581-l9z7r\" not found" +1:11PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-5581-l9z7r\": pods \"emsuibht-5581-l9z7r\" not found" +1:11PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-5581-l9z7r\": pods \"emsuibht-5581-l9z7r\" not found" +1:11PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-5581-l9z7r\": pods \"emsuibht-5581-l9z7r\" not found" +1:11PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-5581-l9z7r\": pods \"emsuibht-5581-l9z7r\" not found" +1:11PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-5581-l9z7r\": pods \"emsuibht-5581-l9z7r\" not found" +1:12PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-5581-l9z7r\": pods \"emsuibht-5581-l9z7r\" not found" +1:12PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-5581-l9z7r\": pods \"emsuibht-5581-l9z7r\" not found" +1:12PM WRN reconciler exited error="context canceled" +1:12PM INF 🐶 K9s starting up... +1:12PM INF ✅ Kubernetes connectivity +1:58PM ERR Command failed error="exit status 130" +1:58PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-24375-nqwlt -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:58PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:58PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-emsinit" +1:58PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-preinstall-1xcd" +1:58PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-uninstall-glmk" +1:58PM WRN Deleted (0) portforward for "cp-automation-dp/ems-auto-uninstall-mbrd" +1:58PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-375-uninstall-aq4z" +1:58PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-375-uninstall-ohwv" +1:58PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-374-uninstall-ubot" +1:58PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-373-uninstall-wbnb" +1:58PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-24375" +1:58PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-373-uninstall-x8c7" +2:16PM INF 🐶 K9s starting up... +2:16PM INF ✅ Kubernetes connectivity +2:18PM INF 🐶 K9s starting up... +2:18PM INF ✅ Kubernetes connectivity +2:23PM ERR cp-automation-dp/emsuiactivation-14197-btzqb is not in a running state +2:26PM ERR cp-automation-dp/emsuiactivation-14197-btzqb is not in a running state +2:26PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuiactivation-14197-btzqb\" is waiting to start: ContainerCreating for cp-automation-dp/emsuiactivation-14197-btzqb (run-test)" +2:26PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuiactivation-14197-btzqb\" is waiting to start: ContainerCreating for cp-automation-dp/emsuiactivation-14197-btzqb (run-test)" +2:27PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuiactivation-14197-btzqb\" is waiting to start: ContainerCreating for cp-automation-dp/emsuiactivation-14197-btzqb (run-test)" +2:27PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuiactivation-14197-btzqb\" is waiting to start: ContainerCreating for cp-automation-dp/emsuiactivation-14197-btzqb (run-test)" +2:27PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuiactivation-14197-btzqb\" is waiting to start: ContainerCreating for cp-automation-dp/emsuiactivation-14197-btzqb (run-test)" +2:27PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuiactivation-14197-btzqb\" is waiting to start: ContainerCreating for cp-automation-dp/emsuiactivation-14197-btzqb (run-test)" +2:27PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuiactivation-14197-btzqb\" is waiting to start: ContainerCreating for cp-automation-dp/emsuiactivation-14197-btzqb (run-test)" +2:27PM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuiactivation-14197-btzqb\" is waiting to start: ContainerCreating for cp-automation-dp/emsuiactivation-14197-btzqb (run-test)" +2:27PM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for cp-automation-dp/emsuiactivation-14197-btzqb (run-test)" +2:27PM ERR Command failed error="exit status 130" +2:27PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-18662-hq8b4 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +2:27PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +2:27PM ERR Command failed error="exit status 130" +2:27PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-14197-btzqb -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +2:27PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +2:29PM ERR Command failed error="exit status 130" +2:29PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-18662-hq8b4 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +2:29PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +2:29PM ERR Command failed error="exit status 130" +2:29PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-14197-btzqb -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +2:29PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +2:30PM ERR Command failed error="exit status 137" +2:30PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-18662-hq8b4 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +2:30PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +2:48PM ERR Command failed error="exit status 137" +2:48PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-14197-btzqb -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +2:48PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +2:58PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +2:58PM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:58PM ERR refresh failed for gvr: batch/v1/jobs error="ACCESS -- No API server connection" +2:58PM WRN Unable to dial discovery API error="no connection to dial" +2:58PM ERR Watcher failed for batch/v1/jobs -- ACCESS -- No API server connection error="ACCESS -- No API server connection" +2:59PM ERR Command failed error="exit status 137" +2:59PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-31403-zxm6k -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +2:59PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +2:59PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-379-uninstall-x3lr" +2:59PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-378-uninstall-fbft" +2:59PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-378-uninstall-wie7" +3:04PM ERR Command failed error="exit status 137" +3:04PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-18098-2cllv -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:04PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:13PM ERR Command failed error="exit status 137" +3:13PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-18722-pcnzn -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:13PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:24PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +3:24PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:32PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +3:32PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:33PM ERR Command failed error="exit status 1" +3:33PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-727-8p8r9 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +3:33PM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +3:52PM INF 🐶 K9s starting up... +3:52PM INF ✅ Kubernetes connectivity +3:54PM ERR Command failed error="exit status 137" +3:54PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-16884-5dsjv -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:54PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +4:04PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +4:04PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:56PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +4:56PM ERR ClusterUpdater failed error="conn check failed (2/5)" +4:58PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +4:58PM ERR ClusterUpdater failed error="conn check failed (3/5)" +5:07PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +5:07PM ERR ClusterUpdater failed error="conn check failed (4/5)" +5:07PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +5:07PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +8:55AM INF 🐶 K9s starting up... +8:55AM INF ✅ Kubernetes connectivity +8:55AM INF 🐶 K9s starting up... +8:55AM INF ✅ Kubernetes connectivity +8:56AM INF 🐶 K9s starting up... +8:56AM INF ✅ Kubernetes connectivity +9:00AM INF 🐶 K9s starting up... +9:00AM INF ✅ Kubernetes connectivity +9:00AM INF 🐶 K9s starting up... +9:00AM INF ✅ Kubernetes connectivity +9:34AM INF 🐶 K9s starting up... +9:34AM INF ✅ Kubernetes connectivity +9:44AM WRN log-reader EOF error="stream closed EOF for cp1-ns/tp-cp-auditsafe-upgrade-2mtbr (auditsafe-upgrade)" +9:50AM ERR Command failed error="exit status 130" +9:50AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-23578-8pmfw -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +9:50AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +9:52AM ERR Command failed error="exit status 137" +9:52AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-18822-frwrg -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +9:52AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +9:58AM ERR Command failed error="exit status 130" +9:58AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-7168-qksgk -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +9:58AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +9:58AM ERR Command failed error="exit status 130" +9:58AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-11070-88wkk -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +9:58AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +9:59AM ERR Command failed error="exit status 130" +9:59AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-11070-88wkk -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +9:59AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +10:05AM ERR Command failed error="exit status 130" +10:05AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-11070-88wkk -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +10:05AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +10:06AM ERR Command failed error="exit status 130" +10:06AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-7168-qksgk -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +10:06AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +10:06AM ERR Command failed error="exit status 137" +10:06AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-11070-88wkk -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +10:06AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +10:07AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-390-uninstall-dzip" +10:07AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-391-uninstall-nydp" +10:07AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-391-uninstall-sx8v" +10:13AM ERR Command failed error="exit status 137" +10:13AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-969-pl2s6 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +10:13AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +10:31AM ERR Command failed error="exit status 137" +10:31AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-15260-r4h2b -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +10:31AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +10:46AM ERR Command failed error="exit status 130" +10:46AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-27359-tbm8h -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +10:46AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +10:50AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +10:50AM ERR ClusterUpdater failed error="conn check failed (1/5)" +10:50AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +10:50AM ERR ClusterUpdater failed error="conn check failed (2/5)" +10:52AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +10:52AM ERR ClusterUpdater failed error="conn check failed (3/5)" +10:56AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +10:56AM ERR ClusterUpdater failed error="conn check failed (1/5)" +10:56AM ERR ACCESS -- No API server connection +10:56AM INF 🐶 K9s starting up... +10:56AM INF ✅ Kubernetes connectivity +11:06AM ERR Command failed error="exit status 137" +11:06AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-36-587qb -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +11:06AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +11:38AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +11:38AM ERR ClusterUpdater failed error="conn check failed (1/5)" +11:46AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +11:46AM ERR ClusterUpdater failed error="conn check failed (1/5)" +11:50AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +11:50AM ERR ClusterUpdater failed error="conn check failed (1/5)" +12:17PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +12:17PM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:36PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +2:36PM ERR ClusterUpdater failed error="conn check failed (1/5)" +5:25PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +5:25PM ERR ClusterUpdater failed error="conn check failed (1/5)" +5:26PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +5:26PM ERR ClusterUpdater failed error="conn check failed (2/5)" +6:10PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded (Client.Timeout exceeded while awaiting headers)" +6:10PM ERR ClusterUpdater failed error="conn check failed (3/5)" +6:10PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +6:10PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +10:54AM INF 🐶 K9s starting up... +10:54AM INF ✅ Kubernetes connectivity +10:55AM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/standby-test-ems-1 (standby-test-ems)" +10:55AM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/standby-test-ems-0 (standby-test-ems)" +10:55AM WRN Deleted (0) portforward for "cp-automation-dp/standby-test-ems-0" +11:02AM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/ems-test-ems-1 (ems-test-ems)" +11:02AM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/ems-ems-0 (ems-ems)" +11:02AM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/ems-ems-0 (ems-ems)" +11:03AM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/ems-ems-2 (ems-ems)" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/ems-ems-2" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/ems-ems-0" +11:04AM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/ems-ems-1 (ems-ems)" +11:06AM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/ems-ems-1 (ems-ems)" +11:06AM WRN Deleted (0) portforward for "cp-automation-dp/ems-1-ems-0" +11:06AM WRN Deleted (0) portforward for "cp-automation-dp/ems-1-ems-2" +11:12AM WRN Deleted (0) portforward for "cp-automation-dp/ems-ems-0" +11:12AM WRN Deleted (0) portforward for "cp-automation-dp/ems-ems-2" +11:14AM WRN Deleted (0) portforward for "cp-automation-dp/ems-ems-2" +11:14AM WRN Deleted (0) portforward for "cp-automation-dp/ems-ems-0" +11:18AM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/ems-ems-1 (ems-ems)" +11:18AM WRN Deleted (0) portforward for "cp-automation-dp/ems-1-ems-0" +11:18AM WRN Deleted (0) portforward for "cp-automation-dp/ems-1-ems-2" +11:28AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +11:28AM ERR ClusterUpdater failed error="conn check failed (1/5)" +11:33AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +11:33AM ERR ClusterUpdater failed error="conn check failed (1/5)" +11:37AM INF 🐶 K9s starting up... +11:37AM INF ✅ Kubernetes connectivity +11:40AM WRN Deleted (0) portforward for "cp-automation-dp/ems-new-ems-2" +11:40AM WRN Deleted (0) portforward for "cp-automation-dp/ems-new-ems-0" +11:41AM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/tp-msg-gateway-0 (tp-msg-gateway)" +11:41AM WRN Deleted (0) portforward for "cp-automation-dp/tp-msg-gateway-0" +11:42AM WRN Deleted (0) portforward for "cp-automation-dp/tp-msg-gateway-0" +11:42AM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/ems-new-ems-1 (ems-new-ems)" +11:43AM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/ems-new-ems-1 (ems-new-ems)" +11:45AM WRN Deleted (0) portforward for "cp-automation-dp/ems-1-ems-0" +11:45AM WRN Deleted (0) portforward for "cp-automation-dp/ems-1-ems-2" +11:50AM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/ems-1-ems-1 (ems-1-ems)" +11:50AM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/ems-1-ems-0 (ems-1-ems)" +11:51AM WRN Deleted (0) portforward for "cp-automation-dp/ems-1-ems-2" +11:51AM WRN Deleted (0) portforward for "cp-automation-dp/ems-1-ems-0" +11:53AM WRN Deleted (0) portforward for "cp-automation-dp/ems-1-ems-0" +11:53AM WRN Deleted (0) portforward for "cp-automation-dp/ems-1-ems-2" +11:55AM WRN Deleted (0) portforward for "cp-automation-dp/ems-1-ems-0" +11:55AM WRN Deleted (0) portforward for "cp-automation-dp/ems-1-ems-2" +11:59AM WRN Deleted (0) portforward for "cp-automation-dp/ems-1-ems-0" +11:59AM WRN Deleted (0) portforward for "cp-automation-dp/ems-1-ems-2" +12:00PM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/tp-msg-gateway-0 (tp-msg-gateway)" +12:00PM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/tp-msg-gateway-0 (tp-msg-gateway)" +12:03PM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/ems-1-ems-1 (ems-1-ems)" +12:04PM WRN log-reader canceled error="stream canceled context canceled for cp1-ns/tp-cp-msg-webserver-6d6b445948-7twrc (msg-gems)" +12:06PM WRN Deleted (0) portforward for "cp-automation-dp/ems-1-ems-0" +12:06PM WRN Deleted (0) portforward for "cp-automation-dp/ems-1-ems-2" +12:06PM WRN k9s latest rev fetch failed Get "https://api.github.com/repos/derailed/k9s/releases/latest": dial tcp: lookup api.github.com: no such host +12:27PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +12:27PM ERR ClusterUpdater failed error="conn check failed (1/5)" +1:24PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +1:24PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:06PM WRN k9s latest rev fetch failed Get "https://api.github.com/repos/derailed/k9s/releases/latest": context deadline exceeded +4:02PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +4:02PM ERR ClusterUpdater failed error="conn check failed (1/5)" +5:57PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +5:57PM ERR ClusterUpdater failed error="conn check failed (2/5)" +6:01PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +6:01PM ERR ClusterUpdater failed error="conn check failed (3/5)" +6:01PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +6:01PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +9:15AM INF 🐶 K9s starting up... +9:15AM INF ✅ Kubernetes connectivity +9:19AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuiactivation-825-wsk5q\" is waiting to start: ContainerCreating for cp-automation-dp/emsuiactivation-825-wsk5q (run-test)" +9:19AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuiactivation-825-wsk5q\" is waiting to start: ContainerCreating for cp-automation-dp/emsuiactivation-825-wsk5q (run-test)" +9:19AM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for cp-automation-dp/emsuiactivation-825-wsk5q (run-test)" +9:19AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuiactivation-825-wsk5q\" is waiting to start: ContainerCreating for cp-automation-dp/emsuiactivation-825-wsk5q (run-test)" +9:19AM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for cp-automation-dp/emsuiactivation-825-wsk5q (run-test)" +9:38AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +9:38AM ERR ClusterUpdater failed error="conn check failed (1/5)" +9:40AM ERR Command failed error="exit status 130" +9:40AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-825-wsk5q -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +9:40AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +9:41AM INF 🐶 K9s starting up... +9:41AM INF ✅ Kubernetes connectivity +9:42AM ERR Command failed error="exit status 137" +9:42AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-10456-2mxvl -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +9:42AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +9:44AM INF 🐶 K9s starting up... +9:44AM INF ✅ Kubernetes connectivity +9:49AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +9:49AM ERR ClusterUpdater failed error="conn check failed (1/5)" +9:51AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +9:51AM ERR ClusterUpdater failed error="conn check failed (1/5)" +9:55AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +9:55AM ERR ClusterUpdater failed error="conn check failed (1/5)" +10:05AM ERR Command failed error="exit status 130" +10:05AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-28236-gx5w9 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +10:05AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +10:12AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-emsinit" +10:12AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-preinstall-rkew" +10:12AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-399-uninstall-yvc4" +10:13AM ERR Command failed error="exit status 130" +10:13AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-14514-s6wfm -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +10:13AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +10:14AM ERR cp-automation-dp/emsuiqueuessend-2819-n66cd is not in a running state +10:14AM ERR Command failed error="exit status 137" +10:14AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-2819-n66cd -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +10:14AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +10:22AM ERR Command failed error="exit status 137" +10:22AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuitopicssend-23084-zsfcr -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +10:22AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +10:24AM ERR cp-automation-dp/emsuitopicssend-17595-7q7wp is not in a running state +10:24AM ERR cp-automation-dp/emsuitopicssend-17595-7q7wp is not in a running state +10:24AM ERR Command failed error="exit status 137" +10:24AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuitopicssend-17595-7q7wp -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +10:24AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +10:24AM WRN log-reader EOF error="stream closed EOF for cp-automation-dp/emsuitopicssend-17595-7q7wp (run-test)" +10:25AM INF 🐶 K9s starting up... +10:25AM INF ✅ Kubernetes connectivity +10:40AM ERR Command failed error="exit status 137" +10:40AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-11482-tg5xx -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +10:40AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +10:45AM ERR Command failed error="exit status 137" +10:45AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-32064-2lmjw -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +10:45AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +10:56AM ERR Command failed error="exit status 137" +10:56AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-20224-mlfmb -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +10:56AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +10:58AM ERR cp-automation-dp/emsuiqueuessend-30336-j7hfn is not in a running state +10:59AM ERR Command failed error="exit status 137" +10:59AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-30336-j7hfn -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +10:59AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +11:16AM ERR Command failed error="exit status 130" +11:16AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-12064-cgxc8 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +11:16AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +11:21AM ERR Command failed error="exit status 130" +11:21AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-26037-n6rbb -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +11:21AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +11:31AM INF 🐶 K9s starting up... +11:31AM INF ✅ Kubernetes connectivity +11:32AM ERR Command failed error="exit status 137" +11:32AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-9153-jt2hp -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +11:32AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +11:55AM ERR Command failed error="exit status 137" +11:55AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-19869-xccfm -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +11:55AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +11:55AM ERR cp-automation-dp/emsuiqueuessend-19869-xccfm is not in a running state +11:58AM ERR Command failed error="exit status 130" +11:58AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-5874-fchd2 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +11:58AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +11:58AM INF 🐶 K9s starting up... +11:58AM INF ✅ Kubernetes connectivity +12:14PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded (Client.Timeout exceeded while awaiting headers)" +12:14PM ERR ClusterUpdater failed error="conn check failed (1/5)" +12:14PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +12:14PM ERR ClusterUpdater failed error="conn check failed (2/5)" +1:16PM INF 🐶 K9s starting up... +1:16PM INF ✅ Kubernetes connectivity +4:05PM ERR Command failed error="exit status 137" +4:05PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-17123-k4rf2 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +4:05PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +4:05PM INF 🐶 K9s starting up... +4:05PM INF ✅ Kubernetes connectivity +4:14PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +4:14PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:24PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +4:24PM ERR ClusterUpdater failed error="conn check failed (2/5)" +4:30PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +4:30PM ERR ClusterUpdater failed error="conn check failed (3/5)" +5:53PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +5:53PM ERR ClusterUpdater failed error="conn check failed (4/5)" +5:53PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +5:53PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +10:49AM INF 🐶 K9s starting up... +10:49AM INF ✅ Kubernetes connectivity +11:00AM INF 🐶 K9s starting up... +11:00AM INF ✅ Kubernetes connectivity +11:30AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-408-preinstall-o6rw" +11:30AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-408-uninstall-xvun" +11:30AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-408-uninstall-pdrq" +11:32AM ERR Command failed error="exit status 137" +11:32AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-13512-djd2v -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +11:32AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +11:39AM ERR Command failed error="exit status 137" +11:39AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-17535-tj8tc -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +11:39AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +11:50AM ERR Command failed error="exit status 137" +11:50AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-16435-jbnkq -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +11:50AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +11:54AM ERR Command failed error="exit status 137" +11:54AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-6750-jlcbj -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +11:54AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +11:59AM ERR Command failed error="exit status 137" +11:59AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-5122-pjd5x -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +11:59AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:49PM ERR Command failed error="exit status 137" +1:49PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-5985-ssqc7 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:49PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:23PM ERR Command failed error="exit status 137" +3:23PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-30119-s5mjn -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:23PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:25PM ERR Command failed error="exit status 130" +3:25PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-5240-vlf7h -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +3:25PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +3:26PM ERR Command failed error="exit status 130" +3:26PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-1162-pb99g -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +3:26PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +3:28PM ERR Command failed error="exit status 137" +3:28PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-5609-829dg -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:28PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:30PM ERR cp-automation-dp/emsuiqueuessend-3561-kn779 is not in a running state +3:30PM ERR cp-automation-dp/emsuiqueuessend-3561-kn779 is not in a running state +3:30PM ERR cp-automation-dp/emsuiqueuessend-3561-kn779 is not in a running state +3:31PM ERR Command failed error="exit status 137" +3:31PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-3561-kn779 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:31PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:37PM ERR Command failed error="exit status 137" +3:37PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-22122-cxm6z -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:37PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:40PM ERR Command failed error="exit status 137" +3:40PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-5053-tcq9h -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:40PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:59PM ERR Command failed error="exit status 137" +3:59PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-18069-8hvxr -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:59PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +4:02PM ERR Command failed error="exit status 137" +4:02PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-23116-5ssrp -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +4:02PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +5:36PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": read tcp 10.123.231.142:61438->10.97.130.64:443: read: operation timed out" +5:36PM ERR ClusterUpdater failed error="conn check failed (1/5)" +5:37PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +5:37PM ERR ClusterUpdater failed error="conn check failed (2/5)" +5:56PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)" +5:56PM ERR ClusterUpdater failed error="conn check failed (3/5)" +5:56PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +5:56PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +9:12AM INF 🐶 K9s starting up... +9:12AM INF ✅ Kubernetes connectivity +10:02AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-16140-lq5jl" +10:10AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +10:10AM ERR ClusterUpdater failed error="conn check failed (1/5)" +10:17AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-31161" +10:17AM ERR cp-automation-dp/emsuibht-20220-lwxbs is not in a running state +10:18AM INF 🐶 K9s starting up... +10:18AM INF ✅ Kubernetes connectivity +10:23AM INF 🐶 K9s starting up... +10:23AM INF ✅ Kubernetes connectivity +10:50AM INF 🐶 K9s starting up... +10:50AM INF ✅ Kubernetes connectivity +10:50AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-24977" +10:57AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-25039" +10:57AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-uninstall-apqk" +10:57AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-408-uninstall-smmk" +10:57AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-emsinit" +10:57AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-preinstall-sf8q" +10:57AM WRN Deleted (0) portforward for "cp-automation-dp/ems-1-uninstall-pedq" +10:57AM WRN Deleted (0) portforward for "cp-automation-dp/ems19-uninstall-1fw8" +11:05AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-915" +11:14AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-2482-kk5dk" +11:22AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-2482" +11:23AM ERR Command failed error="exit status 130" +11:23AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-11402-mwcm7 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +11:23AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +11:33AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-preinstall-fb3o" +11:33AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-emsinit" +11:33AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-27332" +11:33AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-11402" +11:33AM ERR Delete failed with `jobs.batch "auto-ems-act-bht-emsinit" not found error="jobs.batch \"auto-ems-act-bht-emsinit\" not found" +11:33AM ERR Delete failed with `jobs.batch "auto-ems-act-bht-uninstall-rmzt" not found error="jobs.batch \"auto-ems-act-bht-uninstall-rmzt\" not found" +11:33AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-preinstall-mrzi" +11:33AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-28241" +11:33AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-uninstall-odvc" +12:09PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-25934" +12:09PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-emsinit" +12:09PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-preinstall-zepj" +12:09PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-uninstall-lyw1" +12:09PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-uninstall-dxvw" +12:10PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-17918" +12:15PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-30410" +12:15PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-13571" +12:15PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-14480" +12:15PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueuessend-31318" +12:21PM ERR Command failed error="exit status 130" +12:21PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-17729-xrv88 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +12:21PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +12:25PM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/emsuiactivation-16820-4tsb4 (run-test)" +12:54PM ERR Command failed error="exit status 137" +12:54PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-16820-4tsb4 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +12:54PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +12:54PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-16820-4tsb4\": pods \"emsuiactivation-16820-4tsb4\" not found" +12:54PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-16820-4tsb4\": pods \"emsuiactivation-16820-4tsb4\" not found" +12:54PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-16820-4tsb4\": pods \"emsuiactivation-16820-4tsb4\" not found" +12:54PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-16820-4tsb4\": pods \"emsuiactivation-16820-4tsb4\" not found" +12:54PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-16820-4tsb4\": pods \"emsuiactivation-16820-4tsb4\" not found" +12:54PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-16820-4tsb4\": pods \"emsuiactivation-16820-4tsb4\" not found" +12:54PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-16820-4tsb4\": pods \"emsuiactivation-16820-4tsb4\" not found" +12:54PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-16820-4tsb4\": pods \"emsuiactivation-16820-4tsb4\" not found" +12:54PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-16820-4tsb4\": pods \"emsuiactivation-16820-4tsb4\" not found" +12:55PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-16820-4tsb4\": pods \"emsuiactivation-16820-4tsb4\" not found" +12:55PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-16820-4tsb4\": pods \"emsuiactivation-16820-4tsb4\" not found" +12:55PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-16820-4tsb4\": pods \"emsuiactivation-16820-4tsb4\" not found" +12:55PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-16820-4tsb4\": pods \"emsuiactivation-16820-4tsb4\" not found" +12:56PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-16820-4tsb4\": pods \"emsuiactivation-16820-4tsb4\" not found" +12:56PM WRN reconciler exited error="failed to locate pod \"cp-automation-dp/emsuiactivation-16820-4tsb4\": pods \"emsuiactivation-16820-4tsb4\" not found" +12:56PM ERR failed to locate pod "cp-automation-dp/emsuiactivation-16820-4tsb4": pods "emsuiactivation-16820-4tsb4" not found +1:04PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-emsinit" +1:04PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-emsinit" +1:04PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-21573" +1:04PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-preinstall-yqtb" +1:04PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-preinstall-fnt8" +1:04PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-uninstall-jlhv" +1:04PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-uninstall-jbj6" +2:33PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-uninstall-ntzy" +2:33PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-uninstall-qsx3" +2:33PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-17677" +3:10PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-16973" +3:10PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-emsinit" +3:10PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-preinstall-a1fo" +3:10PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-emsinit" +3:10PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-preinstall-wyei" +3:10PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-uninstall-barp" +3:10PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-uninstall-8esc" +3:11PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-31647" +3:23PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-uninstall-gi8w" +3:23PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-emsinit" +3:23PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-uninstall-ylxn" +3:23PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-preinstall-kvvh" +3:23PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-4799" +3:30PM ERR Command failed error="exit status 130" +3:30PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-23806-9qdrr -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +3:30PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +3:30PM ERR Delete failed with `jobs.batch "emsuibht-18818" not found error="jobs.batch \"emsuibht-18818\" not found" +3:30PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-23806" +3:32PM ERR Command failed error="exit status 130" +3:32PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-18993-46xp2 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +3:32PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +3:32PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-18993" +3:49PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-24854" +3:50PM ERR cp-automation-dp/emsuibht-4788-nqmcf is not in a running state +3:59PM ERR Command failed error="exit status 137" +3:59PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-4788-nqmcf -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:59PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:59PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-4788-nqmcf\": pods \"emsuibht-4788-nqmcf\" not found" +3:59PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-4788-nqmcf\": pods \"emsuibht-4788-nqmcf\" not found" +3:59PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-4788-nqmcf\": pods \"emsuibht-4788-nqmcf\" not found" +3:59PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-4788-nqmcf\": pods \"emsuibht-4788-nqmcf\" not found" +3:59PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-4788-nqmcf\": pods \"emsuibht-4788-nqmcf\" not found" +3:59PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-4788-nqmcf\": pods \"emsuibht-4788-nqmcf\" not found" +3:59PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-4788-nqmcf\": pods \"emsuibht-4788-nqmcf\" not found" +3:59PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-4788-nqmcf\": pods \"emsuibht-4788-nqmcf\" not found" +3:59PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-4788-nqmcf\": pods \"emsuibht-4788-nqmcf\" not found" +3:59PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-4788-nqmcf\": pods \"emsuibht-4788-nqmcf\" not found" +3:59PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-4788-nqmcf\": pods \"emsuibht-4788-nqmcf\" not found" +4:00PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-4788-nqmcf\": pods \"emsuibht-4788-nqmcf\" not found" +4:00PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-4788-nqmcf\": pods \"emsuibht-4788-nqmcf\" not found" +4:01PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-4788-nqmcf\": pods \"emsuibht-4788-nqmcf\" not found" +4:01PM WRN reconciler exited error="failed to locate pod \"cp-automation-dp/emsuibht-4788-nqmcf\": pods \"emsuibht-4788-nqmcf\" not found" +4:01PM ERR failed to locate pod "cp-automation-dp/emsuibht-4788-nqmcf": pods "emsuibht-4788-nqmcf" not found +4:01PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +4:01PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:03PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +4:03PM ERR ClusterUpdater failed error="conn check failed (2/5)" +4:04PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +4:04PM ERR ClusterUpdater failed error="conn check failed (3/5)" +5:25PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)" +5:25PM ERR ClusterUpdater failed error="conn check failed (4/5)" +5:25PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +5:25PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +9:02AM INF 🐶 K9s starting up... +9:02AM INF ✅ Kubernetes connectivity +9:09AM ERR Command failed error="exit status 137" +9:09AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-23622-bbgv6 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +9:09AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +9:09AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-23622-bbgv6\": pods \"emsuibht-23622-bbgv6\" not found" +9:09AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-23622-bbgv6\": pods \"emsuibht-23622-bbgv6\" not found" +9:09AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-23622-bbgv6\": pods \"emsuibht-23622-bbgv6\" not found" +9:09AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-23622-bbgv6\": pods \"emsuibht-23622-bbgv6\" not found" +9:09AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-23622-bbgv6\": pods \"emsuibht-23622-bbgv6\" not found" +9:09AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-23622-bbgv6\": pods \"emsuibht-23622-bbgv6\" not found" +9:09AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-23622-bbgv6\": pods \"emsuibht-23622-bbgv6\" not found" +9:09AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-23622-bbgv6\": pods \"emsuibht-23622-bbgv6\" not found" +9:09AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-23622-bbgv6\": pods \"emsuibht-23622-bbgv6\" not found" +9:09AM WRN reconciler exited error="context canceled" +9:11AM ERR Command failed error="exit status 137" +9:11AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-8676-47qfs -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +9:11AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +9:14AM INF 🐶 K9s starting up... +9:14AM INF ✅ Kubernetes connectivity +9:20AM ERR Command failed error="exit status 137" +9:20AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-13557-gkpcr -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +9:20AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +9:52AM ERR Command failed error="exit status 137" +9:52AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-27636-g747j -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +9:52AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +10:03AM ERR Command failed error="exit status 137" +10:03AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-28105-zx72v -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +10:03AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +10:03AM ERR cp-automation-dp/emsuiqueuessend-11573-qgfbz is not in a running state +10:42AM ERR Command failed error="exit status 137" +10:42AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-28900-jsdsw -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +10:42AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +10:49AM ERR Command failed error="exit status 137" +10:49AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-18986-tpg9d -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +10:49AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +11:15AM ERR Command failed error="exit status 137" +11:15AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-6364-l2jfv -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +11:15AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +11:38AM ERR Command failed error="exit status 137" +11:38AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-2113-7pfbg -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +11:38AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +11:50AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +11:50AM ERR ClusterUpdater failed error="conn check failed (1/5)" +12:38PM INF 🐶 K9s starting up... +12:38PM INF ✅ Kubernetes connectivity +12:41PM INF 🐶 K9s starting up... +12:41PM INF ✅ Kubernetes connectivity +12:43PM INF 🐶 K9s starting up... +12:43PM INF ✅ Kubernetes connectivity +12:48PM INF 🐶 K9s starting up... +12:48PM INF ✅ Kubernetes connectivity +1:07PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +1:07PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:42PM INF 🐶 K9s starting up... +3:42PM INF ✅ Kubernetes connectivity +3:42PM INF 🐶 K9s starting up... +3:42PM INF ✅ Kubernetes connectivity +3:42PM WRN log-reader EOF error="stream closed EOF for matt-eks131-093025/ems-data-logs-pvc-ems-0 (ems-data-logs-pvc-ems)" +3:46PM WRN log-reader EOF error="stream closed EOF for matt-eks131-093025/ems-data-logs-pvc-ems-0 (ems-data-logs-pvc-ems)" +4:01PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +4:01PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:03PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +4:03PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:04PM WRN  Dial Failed! error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": context deadline exceeded" +4:04PM WRN Fail CRDs load error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": context deadline exceeded" +4:04PM WRN  Dial Failed! error="Post \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": context deadline exceeded" +6:00PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": read tcp 10.123.231.142:63683->10.97.130.64:443: read: operation timed out" +6:00PM ERR ClusterUpdater failed error="conn check failed (1/5)" +6:00PM WRN log-reader canceled error="stream canceled read tcp 10.123.231.142:63672->34.208.107.194:443: read: operation timed out for matt-eks131-093025/ems-data-logs-pvc-ems-0 (ems-data-logs-pvc-ems)" +6:09PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +6:09PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp: lookup BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com: no such host" +6:09PM ERR ClusterUpdater failed error="conn check failed (2/5)" +6:09PM ERR ClusterUpdater failed error="conn check failed (1/5)" +6:59PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +6:59PM ERR ClusterUpdater failed error="conn check failed (3/5)" +6:59PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +6:59PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +7:00PM WRN log-reader canceled error="stream canceled read tcp 192.168.1.110:63885->54.214.244.98:443: read: connection reset by peer for matt-eks131-093025/ems-data-logs-pvc-ems-0 (ems-data-logs-pvc-ems)" +8:42AM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": read tcp 192.168.1.110:64587->34.208.107.194:443: read: operation timed out" +8:42AM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:45AM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +8:45AM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:45AM WRN log-reader canceled error="stream canceled context canceled for matt-eks131-093025/ems-data-logs-pvc-ems-0 (ems-data-logs-pvc-ems)" +8:52AM INF 🐶 K9s starting up... +8:52AM INF ✅ Kubernetes connectivity +10:22AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueuessend-13781" +10:29AM ERR Command failed error="exit status 1" +10:29AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-16758-sv4r8 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +10:29AM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +10:29AM WRN log-reader EOF error="stream closed EOF for cp-automation-dp/emsuiactivation-16758-sv4r8 (run-test)" +10:30AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-16758" +10:30AM ERR Command failed error="exit status 130" +10:30AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-14325-lpqwh -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +10:30AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +10:54AM ERR Command failed error="exit status 137" +10:54AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-14325-lpqwh -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +10:54AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +10:59AM ERR Command failed error="exit status 130" +10:59AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-22433-j2mgr -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +10:59AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +11:03AM ERR Command failed error="exit status 137" +11:03AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-22433-j2mgr -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +11:03AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +11:11AM ERR Command failed error="exit status 130" +11:11AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-16173-ttjxc -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +11:11AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +11:11AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-16173" +11:11AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-emsinit" +11:11AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-preinstall-2hz4" +11:11AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-uninstall-9moh" +11:11AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-uninstall-lezb" +11:12AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-28548" +11:12AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-13721" +11:15AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-2491" +11:15AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-23001" +11:15AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-7071" +11:15AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueuessend-6162" +11:16AM WRN log-reader EOF error="stream closed EOF for cp-automation/tp-tibtunnel-787fb4b4c5-f2gw7 (tibtunnel)" +12:45PM WRN log-reader EOF error="stream closed EOF for matt-eks131-093025/ems-data-logs-pvc-ems-0 (ems-data-logs-pvc-ems)" +12:57PM INF 🐶 K9s starting up... +12:57PM INF ✅ Kubernetes connectivity +2:41PM INF 🐶 K9s starting up... +2:41PM INF ✅ Kubernetes connectivity +2:48PM ERR logs-stream error="stream logs failed container \"msg-qa\" in pod \"qa-sts-0\" is waiting to start: ContainerCreating for msg-qa/qa-sts-0 (msg-qa)" +2:48PM ERR logs-stream error="stream logs failed container \"msg-qa\" in pod \"qa-sts-0\" is waiting to start: ContainerCreating for msg-qa/qa-sts-0 (msg-qa)" +2:48PM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for msg-qa/qa-sts-0 (msg-qa)" +2:48PM ERR Command failed error="exit status 1" +2:48PM ERR Exec failed "/usr/local/bin/kubectl exec --context dp-cluster-msg133-ca-mpddev -it -n msg-qa qa-sts-0 -c msg-qa -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +2:48PM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +4:28PM INF 🐶 K9s starting up... +4:28PM INF ✅ Kubernetes connectivity +4:28PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueuessend-162" +4:28PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-8008" +4:28PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-emsinit" +4:28PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-preinstall-mtwp" +4:28PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-uninstall-nijm" +4:28PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-8690" +4:28PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-uninstall-nwmv" +4:33PM WRN log-reader canceled error="stream canceled context canceled for msg-qa/qa-sts-0 (msg-qa)" +4:34PM ERR Command failed error="exit status 1" +4:34PM ERR Exec failed "/usr/local/bin/kubectl edit --context dp-cluster-msg133-ca-mpddev pods/qa-sts-0 -n msg-qa": exit status 1 + error="exit status 1\n" +4:34PM ERR Edit command failed: exit status 1 + error="exit status 1\n" +4:36PM WRN log-reader canceled error="stream canceled context canceled for msg-qa/qa-sts-0 (msg-qa)" +4:46PM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +4:46PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:46PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +4:46PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:46PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +4:46PM ERR ClusterUpdater failed error="conn check failed (1/5)" +5:02PM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp: lookup 5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com: no such host" +5:02PM ERR ClusterUpdater failed error="conn check failed (2/5)" +5:02PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp: lookup BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com: no such host" +5:02PM ERR ClusterUpdater failed error="conn check failed (2/5)" +5:02PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +5:02PM ERR ClusterUpdater failed error="conn check failed (2/5)" +5:56PM WRN log-reader canceled error="stream canceled read tcp 10.107.193.76:53338->54.214.244.98:443: read: connection reset by peer for matt-eks131-093025/ems-data-logs-pvc-ems-0 (ems-data-logs-pvc-ems)" +5:56PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: operation timed out" +5:56PM ERR ClusterUpdater failed error="conn check failed (3/5)" +5:56PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +5:56PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +5:56PM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +5:56PM ERR ClusterUpdater failed error="conn check failed (1/5)" +5:59PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +5:59PM ERR ClusterUpdater failed error="conn check failed (1/5)" +6:02PM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +6:02PM ERR ClusterUpdater failed error="conn check failed (1/5)" +7:02PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +7:02PM ERR ClusterUpdater failed error="conn check failed (1/5)" +7:02PM WRN log-reader canceled error="stream canceled context canceled for matt-eks131-093025/ems-data-logs-pvc-ems-0 (ems-data-logs-pvc-ems)" +8:04PM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp: lookup 5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com: no such host" +8:04PM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:04PM ERR can't connect to cluster error="client rate limiter Wait returned an error: context deadline exceeded - error from a previous attempt: http2: client connection lost" +8:04PM ERR ClusterUpdater failed error="conn check failed (2/5)" +8:04PM WRN namespace validation failed for: "matt-eks131-093025" error="user not authorized to list all namespaces" +8:04PM WRN namespace validation failed for: "matt-eks131-093025" error="user not authorized to list all namespaces" +9:05PM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +9:05PM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:51AM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": read tcp 192.168.1.110:54777->44.236.53.19:443: read: operation timed out" +8:51AM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:54AM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +8:54AM ERR ClusterUpdater failed error="conn check failed (1/5)" +9:05AM WRN log-reader canceled error="stream canceled context canceled for msg-qa/qa-sts-0 (msg-qa)" +9:13AM INF 🐶 K9s starting up... +9:13AM INF ✅ Kubernetes connectivity +9:13AM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": read tcp 10.123.231.142:55974->44.236.53.19:443: read: no route to host" +9:13AM ERR ClusterUpdater failed error="conn check failed (1/5)" +9:21AM INF 🐶 K9s starting up... +9:21AM INF ✅ Kubernetes connectivity +9:44AM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +9:44AM ERR ClusterUpdater failed error="conn check failed (1/5)" +9:53AM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +9:53AM ERR ClusterUpdater failed error="conn check failed (1/5)" +9:55AM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +9:55AM ERR ClusterUpdater failed error="conn check failed (1/5)" +10:01AM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +10:01AM ERR ClusterUpdater failed error="conn check failed (1/5)" +10:03AM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +10:03AM ERR ClusterUpdater failed error="conn check failed (1/5)" +10:05AM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +10:05AM ERR ClusterUpdater failed error="conn check failed (1/5)" +10:11AM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +10:11AM ERR ClusterUpdater failed error="conn check failed (1/5)" +10:22AM INF 🐶 K9s starting up... +10:22AM INF ✅ Kubernetes connectivity +10:31AM INF 🐶 K9s starting up... +10:31AM INF ✅ Kubernetes connectivity +10:33AM INF 🐶 K9s starting up... +10:33AM INF ✅ Kubernetes connectivity +10:41AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +10:41AM ERR ClusterUpdater failed error="conn check failed (1/5)" +11:08AM ERR Command failed error="exit status 137" +11:08AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-28992-gjvpp -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +11:08AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +11:25AM ERR cp-automation-dp/emsuibmdpbht-2581-bthsx is not in a running state +11:29AM ERR Command failed error="exit status 137" +11:29AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-2581-bthsx -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +11:29AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +11:29AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-2581-bthsx\": pods \"emsuibmdpbht-2581-bthsx\" not found" +11:29AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-2581-bthsx\": pods \"emsuibmdpbht-2581-bthsx\" not found" +11:29AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-2581-bthsx\": pods \"emsuibmdpbht-2581-bthsx\" not found" +11:29AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-2581-bthsx\": pods \"emsuibmdpbht-2581-bthsx\" not found" +11:29AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-2581-bthsx\": pods \"emsuibmdpbht-2581-bthsx\" not found" +11:29AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-2581-bthsx\": pods \"emsuibmdpbht-2581-bthsx\" not found" +11:29AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-2581-bthsx\": pods \"emsuibmdpbht-2581-bthsx\" not found" +11:30AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-2581-bthsx\": pods \"emsuibmdpbht-2581-bthsx\" not found" +11:30AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-2581-bthsx\": pods \"emsuibmdpbht-2581-bthsx\" not found" +11:30AM WRN reconciler exited error="context canceled" +11:31AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-23345" +11:33AM ERR Command failed error="exit status 137" +11:33AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-22224-rjngd -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +11:33AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +11:34AM ERR Command failed error="exit status 130" +11:34AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-15845-8zlk7 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +11:34AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +11:34AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-15845" +11:47AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-9605" +12:20PM ERR Command failed error="exit status 137" +12:20PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-6738-k6hbt -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +12:20PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +12:56PM ERR Command failed error="exit status 1" +12:56PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-16312-n9bz4 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +12:56PM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +12:56PM WRN  Dial Failed! error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": read tcp 10.123.231.142:57143->10.97.130.64:443: read: connection reset by peer" +12:56PM ERR refresh failed for gvr: v1/pods error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": read tcp 10.123.231.142:57143->10.97.130.64:443: read: connection reset by peer" +12:56PM ERR Watcher failed for v1/pods -- [list] access denied on resource "cp-automation-dp":"v1/pods" error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +12:57PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +12:57PM ERR ClusterUpdater failed error="conn check failed (1/5)" +12:59PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +12:59PM ERR ClusterUpdater failed error="conn check failed (1/5)" +1:02PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +1:02PM ERR ClusterUpdater failed error="conn check failed (1/5)" +1:02PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable - error from a previous attempt: http2: client connection lost" +1:02PM ERR ClusterUpdater failed error="conn check failed (2/5)" +1:04PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +1:04PM ERR ClusterUpdater failed error="conn check failed (1/5)" +1:05PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable - error from a previous attempt: http2: client connection lost" +1:05PM ERR ClusterUpdater failed error="conn check failed (2/5)" +1:07PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +1:07PM ERR ClusterUpdater failed error="conn check failed (3/5)" +1:07PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +1:07PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +1:56PM INF 🐶 K9s starting up... +1:56PM INF ✅ Kubernetes connectivity +1:58PM ERR Command failed error="exit status 137" +1:58PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-9692-8wm6q -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:58PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +2:10PM ERR Command failed error="exit status 1" +2:10PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-20016-hm4j8 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +2:10PM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +2:30PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +2:30PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:15PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +3:15PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:34PM ERR Command failed error="exit status 1" +3:34PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-16923-2v87l -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +3:34PM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +3:34PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +3:34PM ERR Cluster updater failed! error="conn check failed (1/5)" +3:35PM WRN Unable to dial discovery API error="no connection to dial" +3:35PM ERR Watcher failed for containers -- failed to locate pod "cp-automation-dp/emsuiactivation-16923-2v87l": ACCESS -- No API server connection error="failed to locate pod \"cp-automation-dp/emsuiactivation-16923-2v87l\": ACCESS -- No API server connection" +3:35PM ERR refresh failed for gvr: v1/pods error="ACCESS -- No API server connection" +3:35PM ERR Watcher failed for v1/pods -- ACCESS -- No API server connection error="ACCESS -- No API server connection" +3:35PM ERR refresh failed for gvr: batch/v1/jobs error="ACCESS -- No API server connection" +3:35PM ERR Watcher failed for batch/v1/jobs -- ACCESS -- No API server connection error="ACCESS -- No API server connection" +3:35PM ERR ACCESS -- No API server connection +3:35PM ERR ACCESS -- No API server connection +3:35PM ERR ACCESS -- No API server connection +3:35PM ERR ACCESS -- No API server connection +3:35PM ERR ACCESS -- No API server connection +3:35PM ERR ACCESS -- No API server connection +3:35PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +3:35PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +3:35PM INF 🐶 K9s starting up... +3:35PM INF ✅ Kubernetes connectivity +3:40PM ERR Command failed error="exit status 137" +3:40PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-16923-2v87l -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:40PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +5:22PM ERR Command failed error="exit status 1" +5:22PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-31018-qgnph -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +5:22PM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +5:22PM WRN  Dial Failed! error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": context deadline exceeded" +5:22PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +5:22PM ERR refresh failed for gvr: v1/pods error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": context deadline exceeded" +5:22PM ERR Cluster updater failed! error="conn check failed (1/5)" +5:22PM WRN Unable to dial discovery API error="no connection to dial" +5:22PM ERR Watcher failed for v1/pods -- ACCESS -- No API server connection error="ACCESS -- No API server connection" +9:02AM INF 🐶 K9s starting up... +9:02AM ERR config refine failed error="unable to activate context \"\": getcontext - invalid context specified: \"\"" +9:02AM ERR Fail to locate metrics-server error="Get \"http://localhost:8080/api\": dial tcp [::1]:8080: connect: connection refused" +9:02AM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp [::1]:8080: connect: connection refused" +9:02AM INF ✅ Kubernetes connectivity +9:02AM WRN Save failed. no active config detected +9:02AM ERR Fail to load global/context configuration error="unable to activate context \"\": getcontext - invalid context specified: \"\"\nGet \"http://localhost:8080/api\": dial tcp [::1]:8080: connect: connection refused\ncannot connect to context: \nk8s connection failed for context: " +9:02AM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +9:02AM ERR Load cluster resources - No API server connection +9:02AM ERR failed to list contexts error="no connection" +9:02AM WRN Unable to dial discovery API error="no connection to dial" +9:02AM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp [::1]:8080: connect: connection refused" +9:02AM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +9:02AM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +9:02AM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +9:02AM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +9:02AM WRN Unable to dial discovery API error="no connection to dial" +9:02AM ERR Load cluster resources - No API server connection +9:02AM WRN Plugins load failed: getcontext - invalid context specified: "" +9:02AM WRN Plugins load failed: getcontext - invalid context specified: "" +9:02AM WRN Save failed. no active config detected +9:02AM ERR nuking k9s shell pod error="getcontext - invalid context specified: \"\"" +9:02AM WRN Save failed. no active config detected +9:02AM INF 🐶 K9s starting up... +9:02AM INF ✅ Kubernetes connectivity +9:15AM ERR Command failed error="exit status 1" +9:15AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-9268-5nnhx -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +9:15AM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +9:15AM ERR Command failed error="exit status 1" +9:15AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-9268-5nnhx -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +9:15AM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +9:15AM WRN log-reader EOF error="stream closed EOF for cp-automation-dp/emsuiactivation-9268-5nnhx (run-test)" +9:34AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +9:34AM ERR ClusterUpdater failed error="conn check failed (1/5)" +9:43AM INF 🐶 K9s starting up... +9:43AM INF ✅ Kubernetes connectivity +10:35AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +10:35AM ERR ClusterUpdater failed error="conn check failed (1/5)" +11:34AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +11:34AM ERR ClusterUpdater failed error="conn check failed (1/5)" +1:17PM INF 🐶 K9s starting up... +1:17PM INF ✅ Kubernetes connectivity +3:14PM INF 🐶 K9s starting up... +3:14PM INF ✅ Kubernetes connectivity +3:14PM WRN Deleted (0) portforward for "msgdp-dev/matt-test-ems-0" +3:14PM WRN Deleted (0) portforward for "msgdp-dev/matt-test-ems-2" +3:35PM INF 🐶 K9s starting up... +3:35PM INF ✅ Kubernetes connectivity +3:36PM INF 🐶 K9s starting up... +3:36PM INF ✅ Kubernetes connectivity +3:36PM WRN Deleted (0) portforward for "eks-092525/matt-test-ems-0" +3:36PM WRN Deleted (0) portforward for "eks-092525/matt-test-ems-2" +3:42PM INF 🐶 K9s starting up... +3:42PM INF ✅ Kubernetes connectivity +3:42PM WRN Deleted (0) portforward for "eks-092525/matt-test-ems-0" +3:42PM WRN Deleted (0) portforward for "eks-092525/matt-test-ems-2" +3:45PM WRN Deleted (0) portforward for "eks-092525/matt-test-ems-0" +3:45PM WRN Deleted (0) portforward for "eks-092525/matt-test-ems-2" +3:57PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +3:57PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:57PM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +3:57PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:01PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +4:01PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:01PM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +4:01PM ERR ClusterUpdater failed error="conn check failed (1/5)" +5:06PM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp 44.236.53.19:443: connect: network is unreachable" +5:06PM ERR ClusterUpdater failed error="conn check failed (2/5)" +5:06PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +5:06PM ERR ClusterUpdater failed error="conn check failed (2/5)" +6:11PM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp: lookup 5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com: no such host" +6:11PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +6:11PM ERR ClusterUpdater failed error="conn check failed (1/5)" +6:11PM ERR ClusterUpdater failed error="conn check failed (3/5)" +6:11PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +6:11PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +3:19AM ERR can't connect to cluster error="client rate limiter Wait returned an error: context deadline exceeded - error from a previous attempt: read tcp 192.168.1.110:53404->54.190.15.195:443: read: connection reset by peer" +3:19AM ERR ClusterUpdater failed error="conn check failed (1/5)" +9:16AM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": read tcp 192.168.1.110:53526->54.190.15.195:443: read: operation timed out" +9:16AM ERR ClusterUpdater failed error="conn check failed (1/5)" +9:23AM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +9:23AM ERR ClusterUpdater failed error="conn check failed (1/5)" +9:23AM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp: lookup 5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com: no such host - error from a previous attempt: http2: client connection lost" +9:23AM ERR ClusterUpdater failed error="conn check failed (2/5)" +10:25AM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +10:25AM ERR ClusterUpdater failed error="conn check failed (1/5)" +10:59AM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +10:59AM ERR ClusterUpdater failed error="conn check failed (1/5)" +11:40AM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp: lookup 5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com: no such host" +11:40AM ERR ClusterUpdater failed error="conn check failed (2/5)" +4:57PM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded (Client.Timeout exceeded while awaiting headers)" +4:57PM ERR ClusterUpdater failed error="conn check failed (1/5)" +6:52PM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +6:52PM ERR ClusterUpdater failed error="conn check failed (1/5)" +7:00PM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": read tcp 192.168.1.126:54861->44.236.53.19:443: read: operation timed out" +7:00PM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:59AM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": read tcp 192.168.1.110:55538->44.236.53.19:443: read: operation timed out" +8:59AM ERR ClusterUpdater failed error="conn check failed (1/5)" +9:02AM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp: lookup 5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com: no such host" +9:02AM ERR ClusterUpdater failed error="conn check failed (2/5)" +9:02AM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp: lookup 5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com: no such host" +9:02AM ERR ClusterUpdater failed error="conn check failed (3/5)" +9:31AM INF 🐶 K9s starting up... +9:31AM INF ✅ Kubernetes connectivity +10:20AM INF 🐶 K9s starting up... +10:20AM INF ✅ Kubernetes connectivity +10:25AM ERR cp-automation-dp/emsuiactivation-11859-gcp2v is not in a running state +10:50AM ERR Command failed error="exit status 137" +10:50AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-11859-gcp2v -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +10:50AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:02PM INF 🐶 K9s starting up... +3:02PM ERR config refine failed error="unable to activate context \"\": getcontext - invalid context specified: \"\"" +3:02PM ERR Fail to locate metrics-server error="Get \"http://localhost:8080/api\": dial tcp [::1]:8080: connect: connection refused" +3:02PM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp [::1]:8080: connect: connection refused" +3:02PM INF ✅ Kubernetes connectivity +3:02PM WRN Save failed. no active config detected +3:02PM ERR Fail to load global/context configuration error="unable to activate context \"\": getcontext - invalid context specified: \"\"\nGet \"http://localhost:8080/api\": dial tcp [::1]:8080: connect: connection refused\ncannot connect to context: \nk8s connection failed for context: " +3:02PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +3:02PM ERR Load cluster resources - No API server connection +3:02PM ERR failed to list contexts error="no connection" +3:02PM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp [::1]:8080: connect: connection refused" +3:02PM WRN Unable to dial discovery API error="no connection to dial" +3:02PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +3:02PM ERR Load cluster resources - No API server connection +3:02PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +3:02PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +3:02PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +3:02PM WRN Plugins load failed: getcontext - invalid context specified: "" +3:02PM WRN Plugins load failed: getcontext - invalid context specified: "" +3:02PM WRN Plugins load failed: getcontext - invalid context specified: "" +3:02PM WRN Plugins load failed: getcontext - invalid context specified: "" +3:02PM WRN Plugins load failed: getcontext - invalid context specified: "" +3:02PM WRN Plugins load failed: getcontext - invalid context specified: "" +3:02PM WRN Plugins load failed: getcontext - invalid context specified: "" +3:02PM WRN Plugins load failed: getcontext - invalid context specified: "" +3:02PM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp [::1]:8080: connect: connection refused" +3:02PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:02PM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp [::1]:8080: connect: connection refused" +3:02PM ERR ClusterUpdater failed error="conn check failed (2/5)" +3:02PM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp [::1]:8080: connect: connection refused" +3:02PM ERR ClusterUpdater failed error="conn check failed (3/5)" +3:02PM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp [::1]:8080: connect: connection refused" +3:02PM ERR ClusterUpdater failed error="conn check failed (4/5)" +3:02PM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp [::1]:8080: connect: connection refused" +3:02PM ERR Conn check failed (5/5). Bailing out! +3:02PM WRN Save failed. no active config detected +3:02PM ERR nuking k9s shell pod error="getcontext - invalid context specified: \"\"" +3:02PM WRN Save failed. no active config detected +3:03PM INF 🐶 K9s starting up... +3:03PM ERR config refine failed error="unable to activate context \"\": getcontext - invalid context specified: \"\"" +3:03PM ERR Fail to locate metrics-server error="Get \"http://localhost:8080/api\": dial tcp [::1]:8080: connect: connection refused" +3:03PM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp [::1]:8080: connect: connection refused" +3:03PM INF ✅ Kubernetes connectivity +3:03PM WRN Save failed. no active config detected +3:03PM ERR Fail to load global/context configuration error="unable to activate context \"\": getcontext - invalid context specified: \"\"\nGet \"http://localhost:8080/api\": dial tcp [::1]:8080: connect: connection refused\ncannot connect to context: \nk8s connection failed for context: " +3:03PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +3:03PM ERR Load cluster resources - No API server connection +3:03PM ERR failed to list contexts error="no connection" +3:03PM WRN Unable to dial discovery API error="no connection to dial" +3:03PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +3:03PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +3:03PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +3:03PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +3:03PM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp [::1]:8080: connect: connection refused" +3:03PM ERR Load cluster resources - No API server connection +3:03PM WRN Unable to dial discovery API error="no connection to dial" +3:03PM WRN Plugins load failed: getcontext - invalid context specified: "" +3:03PM WRN Plugins load failed: getcontext - invalid context specified: "" +3:03PM WRN Plugins load failed: getcontext - invalid context specified: "" +3:03PM WRN Save failed. no active config detected +3:03PM ERR nuking k9s shell pod error="getcontext - invalid context specified: \"\"" +3:03PM WRN Save failed. no active config detected +3:03PM INF 🐶 K9s starting up... +3:03PM INF ✅ Kubernetes connectivity +3:19PM ERR Command failed error="exit status 130" +3:19PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-17386-2nv9j -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +3:19PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +3:20PM ERR Command failed error="exit status 130" +3:20PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-17386-2nv9j -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +3:20PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +3:20PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-17386" +3:33PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-18631" +3:37PM ERR Command failed error="exit status 137" +3:37PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-2200-25ghd -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:37PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:37PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-2200-25ghd\": pods \"emsuibmdpbht-2200-25ghd\" not found" +3:37PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-2200-25ghd\": pods \"emsuibmdpbht-2200-25ghd\" not found" +3:37PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-2200-25ghd\": pods \"emsuibmdpbht-2200-25ghd\" not found" +3:37PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-2200-25ghd\": pods \"emsuibmdpbht-2200-25ghd\" not found" +3:37PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-2200-25ghd\": pods \"emsuibmdpbht-2200-25ghd\" not found" +3:37PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-2200-25ghd\": pods \"emsuibmdpbht-2200-25ghd\" not found" +3:37PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-2200-25ghd\": pods \"emsuibmdpbht-2200-25ghd\" not found" +3:37PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-2200-25ghd\": pods \"emsuibmdpbht-2200-25ghd\" not found" +3:37PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-2200-25ghd\": pods \"emsuibmdpbht-2200-25ghd\" not found" +3:38PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-2200-25ghd\": pods \"emsuibmdpbht-2200-25ghd\" not found" +3:38PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-2200-25ghd\": pods \"emsuibmdpbht-2200-25ghd\" not found" +3:38PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-2200-25ghd\": pods \"emsuibmdpbht-2200-25ghd\" not found" +3:38PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-2200-25ghd\": pods \"emsuibmdpbht-2200-25ghd\" not found" +3:39PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-2200-25ghd\": pods \"emsuibmdpbht-2200-25ghd\" not found" +3:39PM WRN reconciler exited error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-2200-25ghd\": pods \"emsuibmdpbht-2200-25ghd\" not found" +3:39PM ERR failed to locate pod "cp-automation-dp/emsuibmdpbht-2200-25ghd": pods "emsuibmdpbht-2200-25ghd" not found +4:02PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +4:02PM ERR ClusterUpdater failed error="conn check failed (1/5)" +5:18PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +5:18PM ERR ClusterUpdater failed error="conn check failed (2/5)" +5:50PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)" +5:50PM ERR ClusterUpdater failed error="conn check failed (3/5)" +5:50PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +5:50PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +9:03AM INF 🐶 K9s starting up... +9:03AM INF ✅ Kubernetes connectivity +10:02AM INF 🐶 K9s starting up... +10:02AM INF ✅ Kubernetes connectivity +10:04AM INF 🐶 K9s starting up... +10:04AM INF ✅ Kubernetes connectivity +10:04AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-26385" +1:20PM ERR Command failed error="exit status 130" +1:20PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-8905-9k5m6 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:20PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:20PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-8905" +1:25PM ERR Command failed error="exit status 137" +1:25PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-9662-vq52t -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:25PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +2:27PM ERR cp-automation-dp/emsuibmdpbht-16210-8v9wj is not in a running state +4:01PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +4:01PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:02PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +4:02PM ERR ClusterUpdater failed error="conn check failed (2/5)" +4:02PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +4:02PM ERR ClusterUpdater failed error="conn check failed (3/5)" +6:53PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +6:53PM ERR ClusterUpdater failed error="conn check failed (4/5)" +6:53PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +6:53PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +11:44AM INF 🐶 K9s starting up... +11:44AM INF ✅ Kubernetes connectivity +11:53AM ERR Command failed error="exit status 137" +11:53AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-1712-nfq7r -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +11:53AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +11:53AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-1712-nfq7r\": pods \"emsuibmdpbht-1712-nfq7r\" not found" +11:53AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-1712-nfq7r\": pods \"emsuibmdpbht-1712-nfq7r\" not found" +11:53AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-1712-nfq7r\": pods \"emsuibmdpbht-1712-nfq7r\" not found" +11:53AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-1712-nfq7r\": pods \"emsuibmdpbht-1712-nfq7r\" not found" +11:53AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-1712-nfq7r\": pods \"emsuibmdpbht-1712-nfq7r\" not found" +11:53AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-1712-nfq7r\": pods \"emsuibmdpbht-1712-nfq7r\" not found" +11:53AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-1712-nfq7r\": pods \"emsuibmdpbht-1712-nfq7r\" not found" +11:53AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-1712-nfq7r\": pods \"emsuibmdpbht-1712-nfq7r\" not found" +11:54AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-1712-nfq7r\": pods \"emsuibmdpbht-1712-nfq7r\" not found" +11:54AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-1712-nfq7r\": pods \"emsuibmdpbht-1712-nfq7r\" not found" +11:54AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-1712-nfq7r\": pods \"emsuibmdpbht-1712-nfq7r\" not found" +11:54AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-1712-nfq7r\": pods \"emsuibmdpbht-1712-nfq7r\" not found" +11:55AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-1712-nfq7r\": pods \"emsuibmdpbht-1712-nfq7r\" not found" +11:55AM WRN reconciler exited error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-1712-nfq7r\": pods \"emsuibmdpbht-1712-nfq7r\" not found" +11:55AM ERR failed to locate pod "cp-automation-dp/emsuibmdpbht-1712-nfq7r": pods "emsuibmdpbht-1712-nfq7r" not found +12:07PM ERR cp-automation-dp/emsuibmdpbht-23582-rghtz is not in a running state +12:08PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-23582" +1:35PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-emsinit" +1:35PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-preinstall-06vp" +1:35PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-uninstall-mmi9" +1:35PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-15840" +1:36PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-18608" +1:37PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-29010" +1:43PM ERR Command failed error="exit status 130" +1:43PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-3512-js7h6 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:43PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:43PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-3512" +1:47PM ERR Command failed error="exit status 137" +1:47PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-24257-6kv7r -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:47PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:55PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +1:55PM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:00PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +2:00PM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:01PM WRN  Dial Failed! error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": context deadline exceeded" +2:01PM ERR Post "https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews": context deadline exceeded +2:30PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +2:30PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:02PM ERR Command failed error="exit status 137" +3:02PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-29424-vd4hs -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:02PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:27PM ERR Command failed error="exit status 137" +3:27PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-16324-jkldk -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:27PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:36PM ERR Command failed error="exit status 137" +3:36PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-25176-wz9f5 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:36PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:40PM ERR Command failed error="exit status 137" +3:40PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-26211-gk8g6 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:40PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:49PM ERR Command failed error="exit status 137" +3:49PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-20410-9fznr -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:49PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:54PM ERR Command failed error="exit status 137" +3:54PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-19817-zjvbw -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:54PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +4:00PM ERR Command failed error="exit status 1" +4:00PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-4948-2n8bd -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +4:00PM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +5:06PM WRN  Dial Failed! error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": http2: client connection lost" +5:06PM ERR refresh failed for gvr: v1/pods error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": http2: client connection lost" +5:06PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable - error from a previous attempt: http2: client connection lost" +5:06PM ERR Cluster updater failed! error="conn check failed (1/5)" +5:06PM ERR Watcher failed for v1/pods -- ACCESS -- No API server connection error="ACCESS -- No API server connection" +9:52AM INF 🐶 K9s starting up... +9:52AM INF ✅ Kubernetes connectivity +10:26AM ERR refresh failed for gvr: batch/v1/jobs error="ACCESS -- No API server connection" +10:26AM WRN Unable to dial discovery API error="no connection to dial" +10:26AM ERR Watcher failed for batch/v1/jobs -- ACCESS -- No API server connection error="ACCESS -- No API server connection" +10:26AM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +10:26AM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +10:26AM INF 🐶 K9s starting up... +10:26AM INF ✅ Kubernetes connectivity +10:32AM INF 🐶 K9s starting up... +10:32AM INF ✅ Kubernetes connectivity +10:37AM ERR Command failed error="exit status 137" +10:37AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-31283-cm55f -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +10:37AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +10:43AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +10:43AM ERR ClusterUpdater failed error="conn check failed (1/5)" +10:59AM INF 🐶 K9s starting up... +10:59AM INF ✅ Kubernetes connectivity +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-10166-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-8905-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-15951-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-16973-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-23001-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-30515-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-23806-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-24854-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueues-19344-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-8328-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-25039-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-17918-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-20420-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueuessend-162-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-1324-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-9605-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-30615-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-28548-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueues-3038-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-20404-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-1388-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-24257-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-28241-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-23345-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueues-3562-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-24423-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-21165-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-15845-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-3847-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-17677-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-24375-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueues-8471-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueues-16070-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-16758-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-915-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-31647-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-21-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-23582-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-25934-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueues-20922-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-8690-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-26232-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-30556-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-14480-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-21573-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueues-23359-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-8008-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-11370-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-30410-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-25332-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-15840-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-27363-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-11095-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-6007-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-2482-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-2482-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-19050-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-19973-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-20307-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-13571-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-3512-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-5235-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-6237-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-14952-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueues-16157-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-415-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-21785-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-22494-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-16139-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-7642-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-4799-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-11810-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-12248-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueues-11084-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-7958-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueues-32728-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-3837-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-4327-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-2398-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-4312-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-20220-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-31161-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-31880-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueuessend-13781-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-17253-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-18993-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-2491-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-12717-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-25566-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-7071-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-10034-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-29010-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueuessend-31318-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-11809-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-17386-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-8559-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-24977-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-5329-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-13721-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueuessend-6162-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-27023-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-29662-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-12004-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-26385-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueues-14979-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueues-20686-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-18608-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-14347-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-3568-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-27332-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-16173-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-11402-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-16140-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueues-9223-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueues-21114-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-22414-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-28647-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-18631-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueues-18771-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueues-24224-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-31827-tst-scripts" +11:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-4116-tst-scripts" +11:02AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-6237.v1" +11:02AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-18993.v1" +11:02AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-1388.v1" +11:02AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-13571.v1" +11:02AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibmdpbht-5235.v1" +11:02AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiqueuessend-13781.v1" +11:02AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-16758.v1" +11:02AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-27332.v1" +11:02AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-24977.v1" +11:02AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-20307.v1" +11:02AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiqueues-24224.v1" +11:02AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiqueues-32728.v1" +11:02AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-4116.v1" +11:02AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-23001.v1" +11:02AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-26232.v1" +11:02AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-2482.v1" +11:02AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-4312.v1" +11:02AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-11095.v1" +11:02AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-16139.v1" +11:02AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiqueues-20922.v1" +11:02AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-21785.v1" +11:02AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-21165.v1" +11:02AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-28241.v1" +11:02AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-28647.v1" +11:02AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiqueues-21114.v1" +11:02AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-3847.v1" +11:02AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-24423.v1" +11:02AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-27023.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-23806.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-4799.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-16973.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-19050.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-10034.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiqueues-20686.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-8008.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibmdpbht-20404.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-8690.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-15840.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-31880.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibmdpbht-3512.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-30515.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-25332.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiqueues-8471.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiqueues-11084.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-8559.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-18608.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-27363.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-21573.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibmdpbht-16140.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiqueues-18771.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibmdpbht-23582.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibmdpbht-26385.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiqueues-3038.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-17677.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibmdpbht-17386.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibmdpbht-25934.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiqueuessend-31318.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-11809.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-25039.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-31161.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibmdpbht-2491.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiqueuessend-30119.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-2482.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-19973.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-28548.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibmdpbht-14347.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiqueues-14979.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiqueuessend-6162.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibmdpbht-21.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibmdpbht-12004.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-6007.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-7958.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-11370.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-30615.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiqueues-23359.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-15951.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-30556.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-2398.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-11810.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-22494.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-24257.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-7071.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-24854.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-3568.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-25566.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibmdpbht-7642.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibmdpbht-18631.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibmdpbht-23345.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibmdpbht-13721.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibmdpbht-20420.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiqueuessend-162.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-12248.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-8328.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-20220.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiqueues-3562.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-24375.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-415.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibmdpbht-1324.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibmdpbht-11402.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiqueues-19344.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-29662.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-16173.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibmdpbht-17918.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-4327.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-9605.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-30410.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibmdpbht-29010.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-10166.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-22414.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-31827.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibmdpbht-8905.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibmdpbht-12717.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibmdpbht-14480.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibmdpbht-15845.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-14952.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-915.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-17253.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-31647.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiqueues-16157.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-5329.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiqueues-9223.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiqueues-16070.v1" +11:03AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-3837.v1" +11:07AM ERR Command failed error="exit status 137" +11:07AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-23942-fftfd -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +11:07AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +11:47AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded (Client.Timeout exceeded while awaiting headers)" +11:47AM ERR ClusterUpdater failed error="conn check failed (1/5)" +11:47AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +11:47AM ERR ClusterUpdater failed error="conn check failed (1/5)" +11:52AM ERR Command failed error="exit status 137" +11:52AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-30347-pjt9t -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +11:52AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +12:01PM ERR cp-automation-dp/emsuiqueuessend-308-l7ndv is not in a running state +12:02PM ERR Command failed error="exit status 130" +12:02PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-308-l7ndv -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +12:02PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +12:02PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueuessend-308" +12:03PM ERR cp-automation-dp/emsuiqueuessend-4891-p9l7g is not in a running state +12:04PM ERR Command failed error="exit status 130" +12:04PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-4891-p9l7g -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +12:04PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +12:04PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueuessend-4891" +12:07PM ERR Command failed error="exit status 137" +12:07PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-13050-9xpkr -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +12:07PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +12:12PM ERR Command failed error="exit status 130" +12:12PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-6479-2gbj6 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +12:12PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +12:12PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueuessend-6479" +12:15PM ERR Command failed error="exit status 130" +12:15PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-2905-v25k8 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +12:15PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +12:15PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueuessend-2905" +12:15PM ERR Command failed error="exit status 1" +12:15PM ERR Exec failed "/usr/local/bin/kubectl attach --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-11645-9b76b -c run-test": exit status 1 + error="exit status 1\n" +12:15PM ERR Attach exec failed: exit status 1 + error="exit status 1\n" +12:19PM ERR Command failed error="exit status 130" +12:19PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-11645-9b76b -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +12:19PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +12:19PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueuessend-11645" +12:23PM ERR Command failed error="exit status 137" +12:23PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-7084-phpbn -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +12:23PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +12:28PM ERR Command failed error="exit status 130" +12:28PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-21241-vbf2t -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +12:28PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +12:28PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueuessend-21241" +12:28PM ERR cp-automation-dp/emsuiqueuessend-6628-wbzlg is not in a running state +12:31PM ERR Command failed error="exit status 137" +12:31PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-6628-wbzlg -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +12:31PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +12:36PM ERR Command failed error="exit status 137" +12:36PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-8782-p2scc -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +12:36PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +12:40PM ERR Command failed error="exit status 137" +12:40PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-9306-z9t45 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +12:40PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:34PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +3:34PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:34PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +3:34PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:02PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +4:02PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:02PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +4:02PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:04PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable - error from a previous attempt: http2: client connection lost" +4:04PM ERR ClusterUpdater failed error="conn check failed (2/5)" +4:04PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable - error from a previous attempt: http2: client connection lost" +4:04PM ERR ClusterUpdater failed error="conn check failed (2/5)" +6:01PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +6:01PM ERR ClusterUpdater failed error="conn check failed (3/5)" +6:01PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: operation timed out" +6:01PM ERR ClusterUpdater failed error="conn check failed (3/5)" +6:08PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +6:08PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +6:08PM ERR ClusterUpdater failed error="conn check failed (4/5)" +6:08PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +6:08PM ERR ClusterUpdater failed error="conn check failed (4/5)" +6:08PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +6:08PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +6:08PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +9:38AM INF 🐶 K9s starting up... +9:38AM INF ✅ Kubernetes connectivity +9:39AM ERR Command failed error="exit status 1" +9:39AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n vbmdp tp-dp-hawk-console-0 -c tp-dp-hawk-console -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +9:39AM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +9:59AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +9:59AM ERR ClusterUpdater failed error="conn check failed (1/5)" +9:59AM WRN log-reader canceled error="stream canceled context canceled for vbmdp/tp-dp-hawk-console-0 (tp-dp-hawk-console)" +2:00PM INF 🐶 K9s starting up... +2:00PM INF ✅ Kubernetes connectivity +2:07PM ERR Command failed error="exit status 137" +2:07PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-4490-t85f6 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +2:07PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +2:07PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-24325" +2:10PM ERR Command failed error="exit status 130" +2:10PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-27400-wclqx -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +2:10PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +2:10PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-27400" +2:10PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-emsinit" +2:10PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-preinstall-gn3q" +2:11PM INF 🐶 K9s starting up... +2:11PM INF ✅ Kubernetes connectivity +2:11PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-7238" +2:12PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-32739" +2:15PM ERR Command failed error="exit status 130" +2:15PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-20792-7thdm -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +2:15PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +2:15PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-20792" +2:15PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-uninstall-rahh" +2:21PM ERR Command failed error="exit status 137" +2:21PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-5076-nhx9c -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +2:21PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +2:29PM ERR Command failed error="exit status 137" +2:29PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-28489-s22fg -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +2:29PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +2:36PM ERR Command failed error="exit status 130" +2:36PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-30831-rftgk -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +2:36PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +2:37PM ERR Command failed error="exit status 130" +2:37PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-30831-rftgk -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +2:37PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +2:37PM INF 🐶 K9s starting up... +2:37PM INF ✅ Kubernetes connectivity +2:47PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueuessend-31666" +2:50PM ERR Command failed error="exit status 130" +2:50PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuitopicssend-9109-2vmrv -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +2:50PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +2:50PM WRN Deleted (0) portforward for "cp-automation-dp/emsuitopicssend-9109" +3:16PM ERR Command failed error="exit status 137" +3:16PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuitopicssend-26626-cmqmx -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:16PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +11:24AM INF 🐶 K9s starting up... +11:24AM INF ✅ Kubernetes connectivity +11:28AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-6237" +11:29AM ERR Command failed error="exit status 130" +11:29AM ERR Exec failed "/usr/local/bin/kubectl exec --context dp-cluster-msg131-ca-mpddev -it -n cp-automation-dp emsuibht-8189-jfxgp -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +11:29AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +11:29AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-8189" +11:35AM ERR Command failed error="exit status 137" +11:35AM ERR Exec failed "/usr/local/bin/kubectl exec --context dp-cluster-msg131-ca-mpddev -it -n cp-automation-dp emsuibht-4768-qvskz -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +11:35AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +11:40AM INF 🐶 K9s starting up... +11:40AM INF ✅ Kubernetes connectivity +11:40AM ERR cp-automation-dp/emsuibht-22710-zxktt is not in a running state +11:52AM ERR Command failed error="exit status 137" +11:52AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-22710-zxktt -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +11:52AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:03PM INF 🐶 K9s starting up... +1:03PM INF ✅ Kubernetes connectivity +1:08PM ERR Command failed error="exit status 137" +1:08PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-15121-twpmv -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:08PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:11PM ERR Command failed error="exit status 137" +1:11PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-21699-v7vg5 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:11PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:28PM INF 🐶 K9s starting up... +3:28PM INF ✅ Kubernetes connectivity +6:07PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": read tcp 10.123.231.142:49982->10.97.130.64:443: read: operation timed out" +6:07PM ERR ClusterUpdater failed error="conn check failed (1/5)" +6:07PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +6:07PM ERR ClusterUpdater failed error="conn check failed (2/5)" +6:09PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +6:09PM ERR ClusterUpdater failed error="conn check failed (3/5)" +6:09PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +6:09PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +9:04AM INF 🐶 K9s starting up... +9:04AM INF ✅ Kubernetes connectivity +9:33AM INF 🐶 K9s starting up... +9:33AM INF ✅ Kubernetes connectivity +9:52AM INF 🐶 K9s starting up... +9:52AM INF ✅ Kubernetes connectivity +9:56AM INF 🐶 K9s starting up... +9:56AM INF ✅ Kubernetes connectivity +10:04AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-28492-l5m8n\" is waiting to start: trying and failing to pull image for cp-automation-dp-2/emsuibht-28492-l5m8n (run-test)" +10:04AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuibht-28492-l5m8n\" is waiting to start: trying and failing to pull image for cp-automation-dp-2/emsuibht-28492-l5m8n (run-test)" +10:04AM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for cp-automation-dp-2/emsuibht-28492-l5m8n (run-test)" +10:09AM ERR Command failed error="exit status 130" +10:09AM ERR Exec failed "/usr/local/bin/kubectl exec --context dp-cluster-msg131-ca-mpddev -it -n cp-automation-dp-2 emsuibht-27719-gmc65 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +10:09AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +10:13AM ERR Command failed error="exit status 130" +10:13AM ERR Exec failed "/usr/local/bin/kubectl exec --context dp-cluster-msg131-ca-mpddev -it -n cp-automation-dp-2 emsuibht-12815-df5sl -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +10:13AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +10:18AM ERR Command failed error="exit status 130" +10:18AM ERR Exec failed "/usr/local/bin/kubectl exec --context dp-cluster-msg131-ca-mpddev -it -n cp-automation-dp-2 emsuibht-7539-hqm7m -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +10:18AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +10:18AM WRN Deleted (0) portforward for "cp-automation-dp-2/emsuibht-7539" +10:34AM WRN Deleted (0) portforward for "cp-automation-dp-2/emsuibht-11335" +10:34AM INF 🐶 K9s starting up... +10:34AM INF ✅ Kubernetes connectivity +10:36AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-6641" +10:40AM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/emsuiactivation-7318-plf6q (run-test)" +10:44AM ERR Command failed error="exit status 137" +10:44AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-7318-plf6q -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +10:44AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +10:44AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-7318-plf6q\": pods \"emsuiactivation-7318-plf6q\" not found" +10:44AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-7318-plf6q\": pods \"emsuiactivation-7318-plf6q\" not found" +10:44AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-7318-plf6q\": pods \"emsuiactivation-7318-plf6q\" not found" +10:44AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-7318-plf6q\": pods \"emsuiactivation-7318-plf6q\" not found" +10:44AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-7318-plf6q\": pods \"emsuiactivation-7318-plf6q\" not found" +10:44AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-7318-plf6q\": pods \"emsuiactivation-7318-plf6q\" not found" +10:44AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-7318-plf6q\": pods \"emsuiactivation-7318-plf6q\" not found" +10:44AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-7318-plf6q\": pods \"emsuiactivation-7318-plf6q\" not found" +10:44AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-7318-plf6q\": pods \"emsuiactivation-7318-plf6q\" not found" +10:44AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-7318-plf6q\": pods \"emsuiactivation-7318-plf6q\" not found" +10:45AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-7318-plf6q\": pods \"emsuiactivation-7318-plf6q\" not found" +10:45AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-7318-plf6q\": pods \"emsuiactivation-7318-plf6q\" not found" +10:45AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-7318-plf6q\": pods \"emsuiactivation-7318-plf6q\" not found" +10:46AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-7318-plf6q\": pods \"emsuiactivation-7318-plf6q\" not found" +10:46AM WRN reconciler exited error="failed to locate pod \"cp-automation-dp/emsuiactivation-7318-plf6q\": pods \"emsuiactivation-7318-plf6q\" not found" +10:46AM ERR failed to locate pod "cp-automation-dp/emsuiactivation-7318-plf6q": pods "emsuiactivation-7318-plf6q" not found +11:16AM ERR Command failed error="exit status 130" +11:16AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-21358-4wqdx -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +11:16AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +11:16AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-21358" +11:42AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-5610" +11:43AM INF 🐶 K9s starting up... +11:43AM INF ✅ Kubernetes connectivity +11:44AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueuessend-6479-tst-scripts" +11:44AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-5610-tst-scripts" +11:44AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-32739-tst-scripts" +11:44AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueuessend-308-tst-scripts" +11:44AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueuessend-31666-tst-scripts" +11:44AM WRN Deleted (0) portforward for "cp-automation-dp/emsuitopicssend-9109-tst-scripts" +11:44AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-7238-tst-scripts" +11:44AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-27400-tst-scripts" +11:44AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-6641-tst-scripts" +11:44AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueuessend-2905-tst-scripts" +11:44AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueuessend-4891-tst-scripts" +11:44AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueuessend-11645-tst-scripts" +11:44AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-21358-tst-scripts" +11:44AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-24325-tst-scripts" +11:44AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-20792-tst-scripts" +11:44AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiqueuessend-31666.v1" +11:44AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-21358.v1" +11:44AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-27400.v1" +11:44AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-32739.v1" +11:44AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibmdpbht-6641.v1" +11:44AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiqueuessend-308.v1" +11:44AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiqueuessend-11645.v1" +11:44AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-5610.v1" +11:44AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-7238.v1" +11:44AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiqueuessend-2905.v1" +11:44AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiqueuessend-4891.v1" +11:44AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiqueuessend-6479.v1" +11:44AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuitopicssend-9109.v1" +11:44AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-24325.v1" +11:44AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibmdpbht-20792.v1" +1:24PM WRN Deleted (0) portforward for "cp-automation-dp/tempemsuitopics-7066" +1:24PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-uninstall-gurz" +1:33PM ERR Command failed error="exit status 137" +1:33PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-21521-fmztt -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:33PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:35PM ERR Command failed error="exit status 130" +1:35PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-30610-srmg5 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:35PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:35PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-30610" +1:39PM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/emsuiactivation-26437-m82wf (run-test)" +1:58PM ERR Command failed error="exit status 137" +1:58PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-26437-m82wf -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:58PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:58PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-16472" +2:18PM ERR Command failed error="exit status 130" +2:18PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-20551-88mv8 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +2:18PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +2:18PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-20551" +2:40PM ERR Command failed error="exit status 137" +2:40PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-15435-98gq6 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +2:40PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +2:45PM INF 🐶 K9s starting up... +2:45PM INF ✅ Kubernetes connectivity +2:47PM INF 🐶 K9s starting up... +2:47PM INF ✅ Kubernetes connectivity +2:52PM ERR Command failed error="exit status 130" +2:52PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-7149-j76jc -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +2:52PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +3:06PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-7149" +3:24PM ERR Command failed error="exit status 137" +3:24PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-8185-fkjft -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:24PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:54PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +3:54PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:54PM ERR can't connect to cluster error="Get \"https://vc-msgdp-4.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +3:54PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:54PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +3:54PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:55PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable - error from a previous attempt: http2: client connection lost" +3:55PM ERR ClusterUpdater failed error="conn check failed (2/5)" +3:55PM ERR can't connect to cluster error="Get \"https://vc-msgdp-4.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +3:55PM ERR ClusterUpdater failed error="conn check failed (2/5)" +3:55PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +3:55PM ERR ClusterUpdater failed error="conn check failed (2/5)" +4:14PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +4:14PM ERR ClusterUpdater failed error="conn check failed (3/5)" +4:14PM ERR can't connect to cluster error="Get \"https://vc-msgdp-4.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +4:14PM ERR ClusterUpdater failed error="conn check failed (3/5)" +5:34PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +5:34PM ERR ClusterUpdater failed error="conn check failed (3/5)" +5:53PM ERR can't connect to cluster error="Get \"https://vc-msgdp-4.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: operation timed out" +5:53PM ERR ClusterUpdater failed error="conn check failed (4/5)" +5:53PM WRN namespace validation failed for: "k8dp2" error="user not authorized to list all namespaces" +5:53PM WRN namespace validation failed for: "k8dp2" error="user not authorized to list all namespaces" +6:54PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +6:54PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +6:54PM ERR ClusterUpdater failed error="conn check failed (4/5)" +6:54PM ERR ClusterUpdater failed error="conn check failed (4/5)" +6:54PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +6:54PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +6:54PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +6:54PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +8:51AM INF 🐶 K9s starting up... +8:51AM INF ✅ Kubernetes connectivity +9:01AM ERR Command failed error="exit status 130" +9:01AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-30150-s5r7j -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +9:01AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +9:01AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-30150" +9:15AM ERR Command failed error="exit status 130" +9:15AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-21282-ggb76 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +9:15AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +9:16AM ERR Command failed error="exit status 137" +9:16AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-21282-ggb76 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +9:16AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +9:16AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-21282-ggb76\": pods \"emsuiactivation-21282-ggb76\" not found" +9:16AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-21282-ggb76\": pods \"emsuiactivation-21282-ggb76\" not found" +9:16AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-21282-ggb76\": pods \"emsuiactivation-21282-ggb76\" not found" +9:16AM WRN reconciler exited error="context canceled" +9:55AM ERR Command failed error="exit status 130" +9:55AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-23307-7s86g -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +9:55AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +10:06AM ERR Command failed error="exit status 130" +10:06AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-23307-7s86g -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +10:06AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +10:06AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-23307" +10:16AM ERR Command failed error="exit status 130" +10:16AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-18423-x7nqj -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +10:16AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +10:16AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-18423" +10:16AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-uninstall-km4s" +10:17AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-23307.v1" +10:17AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-30150.v1" +10:17AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-30610.v1" +10:17AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-31169.v1" +10:17AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-7149.v1" +10:17AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-16472.v1" +10:17AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-18423.v1" +10:17AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-20551.v1" +10:17AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-31169-tst-scripts" +10:17AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-7149-tst-scripts" +10:17AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-16472-tst-scripts" +10:17AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-18423-tst-scripts" +10:17AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-20551-tst-scripts" +10:17AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-23307-tst-scripts" +10:17AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-30150-tst-scripts" +10:17AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-30610-tst-scripts" +10:17AM INF 🐶 K9s starting up... +10:17AM INF ✅ Kubernetes connectivity +10:26AM ERR Command failed error="exit status 130" +10:26AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-27087-rvddv -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +10:26AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +10:26AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-27087" +10:38AM ERR Command failed error="exit status 130" +10:38AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-28174-j2nqk -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +10:38AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +10:38AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-28174" +10:38AM ERR cp-automation-dp/emsuiactivation-18532-cglkf is not in a running state +10:50AM ERR Command failed error="exit status 130" +10:50AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-18532-cglkf -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +10:50AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +10:50AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-18532" +10:57AM ERR Command failed error="exit status 137" +10:57AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-26636-p4ktx -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +10:57AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +11:01AM INF 🐶 K9s starting up... +11:01AM INF ✅ Kubernetes connectivity +11:04AM ERR Command failed error="exit status 137" +11:04AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-30603-rwwr4 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +11:04AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +11:06AM ERR Command failed error="exit status 130" +11:06AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-30315-wj69h -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +11:06AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +11:06AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-30315" +11:07AM INF 🐶 K9s starting up... +11:07AM INF ✅ Kubernetes connectivity +11:08AM ERR Command failed error="exit status 130" +11:08AM ERR Exec failed "/usr/local/bin/kubectl exec --context dp-cluster-msg131-ca-mpddev -it -n cp-automation-dp-2 emsuiactivation-7214-ldv8x -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +11:08AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +11:10AM WRN Deleted (0) portforward for "cp-automation-dp-2/emsuiactivation-7214" +11:16AM ERR Command failed error="exit status 130" +11:16AM ERR Exec failed "/usr/local/bin/kubectl exec --context dp-cluster-msg131-ca-mpddev -it -n cp-automation-dp-2 emsuiactivation-7275-bb2lb -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +11:16AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +11:16AM WRN Deleted (0) portforward for "cp-automation-dp-2/emsuiactivation-7275" +11:16AM INF 🐶 K9s starting up... +11:16AM INF ✅ Kubernetes connectivity +11:16AM ERR cp-automation-dp/emsuiactivation-16246-jgkrh is not in a running state +11:18AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuiactivation-16246-jgkrh\" is waiting to start: ContainerCreating for cp-automation-dp/emsuiactivation-16246-jgkrh (run-test)" +11:18AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuiactivation-16246-jgkrh\" is waiting to start: ContainerCreating for cp-automation-dp/emsuiactivation-16246-jgkrh (run-test)" +11:19AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuiactivation-16246-jgkrh\" is waiting to start: ContainerCreating for cp-automation-dp/emsuiactivation-16246-jgkrh (run-test)" +11:19AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuiactivation-16246-jgkrh\" is waiting to start: ContainerCreating for cp-automation-dp/emsuiactivation-16246-jgkrh (run-test)" +11:19AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuiactivation-16246-jgkrh\" is waiting to start: ContainerCreating for cp-automation-dp/emsuiactivation-16246-jgkrh (run-test)" +11:19AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuiactivation-16246-jgkrh\" is waiting to start: ContainerCreating for cp-automation-dp/emsuiactivation-16246-jgkrh (run-test)" +11:19AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuiactivation-16246-jgkrh\" is waiting to start: ContainerCreating for cp-automation-dp/emsuiactivation-16246-jgkrh (run-test)" +11:19AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuiactivation-16246-jgkrh\" is waiting to start: ContainerCreating for cp-automation-dp/emsuiactivation-16246-jgkrh (run-test)" +11:19AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuiactivation-16246-jgkrh\" is waiting to start: ContainerCreating for cp-automation-dp/emsuiactivation-16246-jgkrh (run-test)" +11:19AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuiactivation-16246-jgkrh\" is waiting to start: ContainerCreating for cp-automation-dp/emsuiactivation-16246-jgkrh (run-test)" +11:19AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuiactivation-16246-jgkrh\" is waiting to start: ContainerCreating for cp-automation-dp/emsuiactivation-16246-jgkrh (run-test)" +11:19AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuiactivation-16246-jgkrh\" is waiting to start: ContainerCreating for cp-automation-dp/emsuiactivation-16246-jgkrh (run-test)" +11:19AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuiactivation-16246-jgkrh\" is waiting to start: ContainerCreating for cp-automation-dp/emsuiactivation-16246-jgkrh (run-test)" +11:19AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuiactivation-16246-jgkrh\" is waiting to start: ContainerCreating for cp-automation-dp/emsuiactivation-16246-jgkrh (run-test)" +11:19AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuiactivation-16246-jgkrh\" is waiting to start: ContainerCreating for cp-automation-dp/emsuiactivation-16246-jgkrh (run-test)" +11:19AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuiactivation-16246-jgkrh\" is waiting to start: ContainerCreating for cp-automation-dp/emsuiactivation-16246-jgkrh (run-test)" +11:19AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuiactivation-16246-jgkrh\" is waiting to start: ContainerCreating for cp-automation-dp/emsuiactivation-16246-jgkrh (run-test)" +11:19AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuiactivation-16246-jgkrh\" is waiting to start: ContainerCreating for cp-automation-dp/emsuiactivation-16246-jgkrh (run-test)" +11:19AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuiactivation-16246-jgkrh\" is waiting to start: ContainerCreating for cp-automation-dp/emsuiactivation-16246-jgkrh (run-test)" +11:19AM ERR logs-stream error="stream logs failed container \"run-test\" in pod \"emsuiactivation-16246-jgkrh\" is waiting to start: ContainerCreating for cp-automation-dp/emsuiactivation-16246-jgkrh (run-test)" +11:54AM ERR Command failed error="exit status 137" +11:54AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-16246-jgkrh -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +11:54AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +11:54AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-16246-jgkrh\": pods \"emsuiactivation-16246-jgkrh\" not found" +11:54AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-16246-jgkrh\": pods \"emsuiactivation-16246-jgkrh\" not found" +11:54AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-16246-jgkrh\": pods \"emsuiactivation-16246-jgkrh\" not found" +11:54AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-16246-jgkrh\": pods \"emsuiactivation-16246-jgkrh\" not found" +11:54AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-16246-jgkrh\": pods \"emsuiactivation-16246-jgkrh\" not found" +11:54AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-16246-jgkrh\": pods \"emsuiactivation-16246-jgkrh\" not found" +11:54AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-16246-jgkrh\": pods \"emsuiactivation-16246-jgkrh\" not found" +11:54AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-16246-jgkrh\": pods \"emsuiactivation-16246-jgkrh\" not found" +11:54AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-16246-jgkrh\": pods \"emsuiactivation-16246-jgkrh\" not found" +11:55AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-16246-jgkrh\": pods \"emsuiactivation-16246-jgkrh\" not found" +11:55AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-16246-jgkrh\": pods \"emsuiactivation-16246-jgkrh\" not found" +11:55AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-16246-jgkrh\": pods \"emsuiactivation-16246-jgkrh\" not found" +11:56AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-16246-jgkrh\": pods \"emsuiactivation-16246-jgkrh\" not found" +11:56AM WRN reconciler exited error="failed to locate pod \"cp-automation-dp/emsuiactivation-16246-jgkrh\": pods \"emsuiactivation-16246-jgkrh\" not found" +11:56AM ERR failed to locate pod "cp-automation-dp/emsuiactivation-16246-jgkrh": pods "emsuiactivation-16246-jgkrh" not found +12:38PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-10077" +12:44PM ERR Command failed error="exit status 130" +12:44PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-22753-4jlfc -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +12:44PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +12:44PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-22753" +12:45PM ERR Command failed error="exit status 130" +12:45PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-29657-rvspp -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +12:45PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +12:45PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-29657" +12:46PM ERR Command failed error="exit status 130" +12:46PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-15391-fwp5f -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +12:46PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +12:46PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-15391" +12:56PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-22353-6crv6\": pods \"emsuiactivation-22353-6crv6\" not found" +12:56PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-22353-6crv6\": pods \"emsuiactivation-22353-6crv6\" not found" +12:56PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-22353-6crv6\": pods \"emsuiactivation-22353-6crv6\" not found" +12:56PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-22353-6crv6\": pods \"emsuiactivation-22353-6crv6\" not found" +12:56PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-22353-6crv6\": pods \"emsuiactivation-22353-6crv6\" not found" +12:56PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-22353-6crv6\": pods \"emsuiactivation-22353-6crv6\" not found" +12:56PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-22353-6crv6\": pods \"emsuiactivation-22353-6crv6\" not found" +12:56PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-22353-6crv6\": pods \"emsuiactivation-22353-6crv6\" not found" +12:56PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-22353-6crv6\": pods \"emsuiactivation-22353-6crv6\" not found" +12:56PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-22353-6crv6\": pods \"emsuiactivation-22353-6crv6\" not found" +12:56PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-22353-6crv6\": pods \"emsuiactivation-22353-6crv6\" not found" +12:56PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-22353-6crv6\": pods \"emsuiactivation-22353-6crv6\" not found" +12:57PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-22353-6crv6\": pods \"emsuiactivation-22353-6crv6\" not found" +12:57PM WRN reconciler exited error="failed to locate pod \"cp-automation-dp/emsuiactivation-22353-6crv6\": pods \"emsuiactivation-22353-6crv6\" not found" +12:57PM ERR failed to locate pod "cp-automation-dp/emsuiactivation-22353-6crv6": pods "emsuiactivation-22353-6crv6" not found +1:05PM ERR Command failed error="exit status 130" +1:05PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-6618-kxfqt -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:05PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:05PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-6618" +1:10PM ERR Command failed error="exit status 130" +1:10PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-1654-j69zb -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:10PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:10PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-1654" +1:13PM ERR Command failed error="exit status 130" +1:13PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-11072-jwgm7 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:13PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:13PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-11072" +1:22PM ERR Command failed error="exit status 130" +1:22PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-30715-2f6hn -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:22PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:25PM ERR Command failed error="exit status 137" +1:25PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-30715-2f6hn -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:25PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:34PM ERR Command failed error="exit status 130" +1:34PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-9796-tkr7g -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:34PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:43PM ERR Command failed error="exit status 137" +1:43PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-9796-tkr7g -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:43PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +2:08PM ERR Command failed error="exit status 137" +2:08PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-27124-2kkmt -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +2:08PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +4:00PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +4:00PM ERR ClusterUpdater failed error="conn check failed (1/5)" +5:04PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable - error from a previous attempt: http2: client connection lost" +5:04PM ERR ClusterUpdater failed error="conn check failed (2/5)" +5:59PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +5:59PM ERR ClusterUpdater failed error="conn check failed (3/5)" +6:11PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +6:11PM ERR ClusterUpdater failed error="conn check failed (4/5)" +6:11PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +6:11PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +11:20AM INF 🐶 K9s starting up... +11:20AM INF ✅ Kubernetes connectivity +11:24AM INF 🐶 K9s starting up... +11:24AM INF ✅ Kubernetes connectivity +11:25AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-10278" +11:25AM INF 🐶 K9s starting up... +11:25AM INF ✅ Kubernetes connectivity +11:27AM WRN log-reader EOF error="stream closed EOF for cp-automation-dp-2/emsuiactivation-960-plq8r (run-test)" +11:28AM ERR Command failed error="exit status 137" +11:28AM ERR Exec failed "/usr/local/bin/kubectl exec --context dp-cluster-msg131-ca-mpddev -it -n cp-automation-dp-2 emsuibht-9235-sqk27 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +11:28AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:04PM ERR Command failed error="exit status 137" +1:04PM ERR Exec failed "/usr/local/bin/kubectl exec --context dp-cluster-msg131-ca-mpddev -it -n cp-automation-dp-2 emsuibht-2403-qmlr9 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:04PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:22PM WRN Deleted (0) portforward for "cp-automation-dp-2/emsuibht-4070" +1:23PM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp-2/emsuibht-11149-wdb94 (run-test)" +1:29PM ERR Command failed error="exit status 137" +1:29PM ERR Exec failed "/usr/local/bin/kubectl exec --context dp-cluster-msg131-ca-mpddev -it -n cp-automation-dp-2 emsuibht-11149-wdb94 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:29PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:29PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp-2/emsuibht-11149-wdb94\": pods \"emsuibht-11149-wdb94\" not found" +1:29PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp-2/emsuibht-11149-wdb94\": pods \"emsuibht-11149-wdb94\" not found" +1:30PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp-2/emsuibht-11149-wdb94\": pods \"emsuibht-11149-wdb94\" not found" +1:30PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp-2/emsuibht-11149-wdb94\": pods \"emsuibht-11149-wdb94\" not found" +1:30PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp-2/emsuibht-11149-wdb94\": pods \"emsuibht-11149-wdb94\" not found" +1:30PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp-2/emsuibht-11149-wdb94\": pods \"emsuibht-11149-wdb94\" not found" +1:30PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp-2/emsuibht-11149-wdb94\": pods \"emsuibht-11149-wdb94\" not found" +1:30PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp-2/emsuibht-11149-wdb94\": pods \"emsuibht-11149-wdb94\" not found" +1:30PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp-2/emsuibht-11149-wdb94\": pods \"emsuibht-11149-wdb94\" not found" +1:30PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp-2/emsuibht-11149-wdb94\": pods \"emsuibht-11149-wdb94\" not found" +1:30PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp-2/emsuibht-11149-wdb94\": pods \"emsuibht-11149-wdb94\" not found" +1:30PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp-2/emsuibht-11149-wdb94\": pods \"emsuibht-11149-wdb94\" not found" +1:31PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp-2/emsuibht-11149-wdb94\": pods \"emsuibht-11149-wdb94\" not found" +1:31PM WRN reconciler exited error="failed to locate pod \"cp-automation-dp-2/emsuibht-11149-wdb94\": pods \"emsuibht-11149-wdb94\" not found" +1:31PM ERR failed to locate pod "cp-automation-dp-2/emsuibht-11149-wdb94": pods "emsuibht-11149-wdb94" not found +1:42PM WRN Deleted (0) portforward for "cp-automation-dp-2/emsuibht-29093" +1:45PM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp-2/emsuibht-24281-vwp8z (run-test)" +1:47PM ERR Command failed error="exit status 130" +1:47PM ERR Exec failed "/usr/local/bin/kubectl exec --context dp-cluster-msg131-ca-mpddev -it -n cp-automation-dp-2 emsuibht-24281-vwp8z -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:47PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:47PM WRN Deleted (0) portforward for "cp-automation-dp-2/emsuibht-24281" +1:51PM ERR Command failed error="exit status 130" +1:51PM ERR Exec failed "/usr/local/bin/kubectl exec --context dp-cluster-msg131-ca-mpddev -it -n cp-automation-dp-2 emsuibht-12761-nmpzx -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:51PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:51PM WRN Deleted (0) portforward for "cp-automation-dp-2/emsuibht-12761" +1:52PM ERR Command failed error="exit status 130" +1:52PM ERR Exec failed "/usr/local/bin/kubectl exec --context dp-cluster-msg131-ca-mpddev -it -n cp-automation-dp-2 emsuibht-21809-lt84n -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:52PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:52PM WRN Deleted (0) portforward for "cp-automation-dp-2/emsuibht-21809" +1:56PM ERR Command failed error="exit status 130" +1:56PM ERR Exec failed "/usr/local/bin/kubectl exec --context dp-cluster-msg131-ca-mpddev -it -n cp-automation-dp-2 emsuibht-14502-szt2z -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:56PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:56PM WRN Deleted (0) portforward for "cp-automation-dp-2/emsuibht-14502" +1:59PM ERR Command failed error="exit status 130" +1:59PM ERR Exec failed "/usr/local/bin/kubectl exec --context dp-cluster-msg131-ca-mpddev -it -n cp-automation-dp-2 emsuibht-30512-2rx8s -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:59PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:59PM WRN Deleted (0) portforward for "cp-automation-dp-2/emsuibht-30512" +2:06PM INF 🐶 K9s starting up... +2:06PM INF ✅ Kubernetes connectivity +2:06PM WRN log-reader EOF error="stream closed EOF for cp1-ns/tp-cp-pengine-8596cbbd44-ntwp9 (tpcppengineservice)" +2:07PM WRN log-reader EOF error="stream closed EOF for cp1-ns/tp-cp-identity-provider-7bb98bb9dd-lv8rq (tp-cp-identity-provider)" +2:08PM WRN log-reader canceled error="stream canceled context canceled for cp1-ns/tp-identity-management-76ff6f9bb8-zfhfs (idm)" +2:08PM ERR Command failed error="exit status 137" +2:08PM ERR Exec failed "/usr/local/bin/kubectl exec --context dp-cluster-msg131-ca-mpddev -it -n cp-automation-dp-2 emsuibht-15511-k44rb -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +2:08PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +2:08PM WRN log-reader EOF error="stream closed EOF for cp1-ns/tp-cp-orchestrator-559fb66f57-vgs7k (cporchservice)" +2:09PM WRN log-reader EOF error="stream closed EOF for cp1-ns/tp-cp-orchestrator-559fb66f57-vgs7k (cporchservice)" +2:09PM WRN log-reader EOF error="stream closed EOF for cp1-ns/tp-cp-pengine-8596cbbd44-ntwp9 (tpcppengineservice)" +2:11PM WRN Deleted (0) portforward for "cp-automation-dp-2/emsuibht-24775" +2:11PM WRN log-reader EOF error="stream closed EOF for cp1-ns/tp-identity-management-76ff6f9bb8-zfhfs (idm)" +2:12PM WRN log-reader EOF error="stream closed EOF for cp1-ns/tp-cp-orchestrator-559fb66f57-vgs7k (cporchservice)" +2:16PM INF 🐶 K9s starting up... +2:16PM INF ✅ Kubernetes connectivity +2:18PM INF 🐶 K9s starting up... +2:18PM INF ✅ Kubernetes connectivity +2:18PM WRN log-reader EOF error="stream closed EOF for cp1-ns/tp-cp-identity-provider-7bb98bb9dd-lv8rq (tp-cp-identity-provider)" +2:19PM WRN log-reader EOF error="stream closed EOF for cp1-ns/tp-cp-orchestrator-559fb66f57-vgs7k (cporchservice)" +2:19PM WRN log-reader canceled error="stream canceled context canceled for cp1-ns/querynode-7c7649d44f-wdm8k (querynode)" +2:19PM WRN log-reader EOF error="stream closed EOF for cp1-ns/tp-cp-identity-provider-7bb98bb9dd-lv8rq (tp-cp-identity-provider)" +2:19PM WRN log-reader EOF error="stream closed EOF for cp1-ns/tp-cp-orchestrator-559fb66f57-vgs7k (cporchservice)" +2:20PM WRN log-reader EOF error="stream closed EOF for cp1-ns/tp-identity-management-76ff6f9bb8-nbkhn (idm)" +2:20PM WRN log-reader EOF error="stream closed EOF for cp1-ns/tp-cp-pengine-8596cbbd44-ntwp9 (tpcppengineservice)" +2:20PM WRN log-reader EOF error="stream closed EOF for cp1-ns/querynode-7c7649d44f-wdm8k (querynode)" +2:20PM WRN log-reader EOF error="stream closed EOF for cp1-ns/tp-cp-identity-provider-7bb98bb9dd-lv8rq (tp-cp-identity-provider)" +2:21PM WRN log-reader EOF error="stream closed EOF for cp1-ns/tp-cp-orchestrator-559fb66f57-vgs7k (cporchservice)" +2:21PM WRN log-reader EOF error="stream closed EOF for cp1-ns/tp-identity-management-76ff6f9bb8-qkbvr (idm)" +2:21PM WRN log-reader EOF error="stream closed EOF for cp1-ns/tp-identity-management-76ff6f9bb8-nbkhn (idm)" +2:22PM INF 🐶 K9s starting up... +2:22PM INF ✅ Kubernetes connectivity +2:22PM ERR logs-stream error="stream logs failed container \"postgresql\" in pod \"postgresql-0\" is waiting to start: trying and failing to pull image for tibco-ext/postgresql-0 (postgresql)" +2:22PM ERR logs-stream error="stream logs failed container \"postgresql\" in pod \"postgresql-0\" is waiting to start: trying and failing to pull image for tibco-ext/postgresql-0 (postgresql)" +2:22PM ERR logs-stream error="stream logs failed container \"postgresql\" in pod \"postgresql-0\" is waiting to start: trying and failing to pull image for tibco-ext/postgresql-0 (postgresql)" +2:22PM ERR logs-stream error="stream logs failed container \"postgresql\" in pod \"postgresql-0\" is waiting to start: trying and failing to pull image for tibco-ext/postgresql-0 (postgresql)" +2:22PM ERR logs-stream error="stream logs failed container \"postgresql\" in pod \"postgresql-0\" is waiting to start: trying and failing to pull image for tibco-ext/postgresql-0 (postgresql)" +2:22PM ERR logs-stream error="stream logs failed container \"postgresql\" in pod \"postgresql-0\" is waiting to start: trying and failing to pull image for tibco-ext/postgresql-0 (postgresql)" +2:22PM ERR logs-stream error="stream logs failed Get \"https://AB7AF49A07B9792F9A46EEC1C2C7343A.gr7.us-west-2.eks.amazonaws.com/api/v1/namespaces/tibco-ext/pods/postgresql-0/log?container=postgresql&follow=true&tailLines=100×tamps=true\": context canceled for tibco-ext/postgresql-0 (postgresql)" +2:35PM ERR logs-stream error="stream logs failed container \"postgresql\" in pod \"postgresql-0\" is waiting to start: trying and failing to pull image for tibco-ext/postgresql-0 (postgresql)" +2:35PM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for tibco-ext/postgresql-0 (postgresql)" +4:00PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +4:00PM ERR ClusterUpdater failed error="conn check failed (1/5)" +5:58PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp: lookup BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com: no such host" +5:58PM ERR ClusterUpdater failed error="conn check failed (2/5)" +6:26AM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +6:26AM ERR ClusterUpdater failed error="conn check failed (1/5)" +6:27AM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp: lookup BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com: no such host" +6:27AM ERR ClusterUpdater failed error="conn check failed (2/5)" +8:43AM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +8:43AM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:43AM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp: lookup BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com: no such host" +8:43AM ERR ClusterUpdater failed error="conn check failed (2/5)" +8:47AM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +8:47AM ERR ClusterUpdater failed error="conn check failed (1/5)" +10:58AM INF 🐶 K9s starting up... +10:58AM INF ✅ Kubernetes connectivity +10:59AM INF 🐶 K9s starting up... +10:59AM INF ✅ Kubernetes connectivity +11:52AM ERR Command failed error="exit status 137" +11:52AM ERR Exec failed "/usr/local/bin/kubectl exec --context dp-cluster-msg131-ca-mpddev -it -n cp-automation-dp-2 emsuibht-30447-kl85j -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +11:52AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +12:20PM INF 🐶 K9s starting up... +12:20PM INF ✅ Kubernetes connectivity +12:42PM INF 🐶 K9s starting up... +12:42PM INF ✅ Kubernetes connectivity +12:46PM WRN log-reader EOF error="stream closed EOF for nperf12-my-ns/tp-dp-hawk-console-0 (tp-dp-hawk-console)" +1:57PM WRN log-reader EOF error="stream closed EOF for cp-automation-dp/auto-ems-act-bht-ems-0 (auto-ems-act-bht-ems)" +1:57PM WRN log-reader EOF error="stream closed EOF for cp-automation-dp/auto-ems-act-bht-ems-1 (auto-ems-act-bht-ems)" +2:03PM INF 🐶 K9s starting up... +2:03PM INF ✅ Kubernetes connectivity +2:10PM INF 🐶 K9s starting up... +2:10PM INF ✅ Kubernetes connectivity +2:15PM ERR Command failed error="exit status 130" +2:15PM ERR Exec failed "/usr/local/bin/kubectl exec --context dp-cluster-msg131-ca-mpddev -it -n cp-automation-dp emsuiqueuessend-28007-7cgxw -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +2:15PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +2:15PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueuessend-28007" +2:17PM ERR Command failed error="exit status 130" +2:17PM ERR Exec failed "/usr/local/bin/kubectl exec --context dp-cluster-msg131-ca-mpddev -it -n cp-automation-dp emsuiqueuessend-25011-9bn4f -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +2:17PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +2:17PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueuessend-25011" +2:24PM ERR Command failed error="exit status 127" +2:24PM ERR Exec failed "/usr/local/bin/kubectl exec --context dp-cluster-msg131-ca-mpddev -it -n msg-170 tibco-developer-hub-d3m9rob9sqls73do2a7g-59874dbcd7-7qsnf -c backstage-backend -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 127 + error="exit status 127\n" +2:24PM ERR Shell exec failed: exit status 127 + error="exit status 127\n" +2:29PM ERR Command failed error="exit status 130" +2:29PM ERR Exec failed "/usr/local/bin/kubectl exec --context dp-cluster-msg131-ca-mpddev -it -n msg-170 tibco-developer-hub-d3m9rob9sqls73do2a7g-59874dbcd7-7qsnf -c backstage-backend -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +2:29PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +2:35PM ERR Command failed error="exit status 130" +2:35PM ERR Exec failed "/usr/local/bin/kubectl exec --context dp-cluster-msg131-ca-mpddev -it -n cp-automation-dp emsuiqueuessend-8560-hnc9q -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +2:35PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +2:35PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueuessend-8560" +2:43PM ERR Command failed error="exit status 130" +2:43PM ERR Exec failed "/usr/local/bin/kubectl exec --context dp-cluster-msg131-ca-mpddev -it -n cp-automation-dp emsuiqueuessend-9051-r2dbm -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +2:43PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +2:43PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueuessend-9051" +2:47PM ERR Command failed error="exit status 130" +2:47PM ERR Exec failed "/usr/local/bin/kubectl exec --context dp-cluster-msg131-ca-mpddev -it -n cp-automation-dp emsuiqueuessend-6017-pbfq9 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +2:47PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +2:47PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueuessend-6017" +2:51PM ERR Command failed error="exit status 130" +2:51PM ERR Exec failed "/usr/local/bin/kubectl exec --context dp-cluster-msg131-ca-mpddev -it -n cp-automation-dp emsuiqueuessend-1785-hnpd8 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +2:51PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +2:51PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueuessend-1785" +3:02PM ERR Command failed error="exit status 137" +3:02PM ERR Exec failed "/usr/local/bin/kubectl exec --context dp-cluster-msg131-ca-mpddev -it -n cp-automation-dp emsuiqueuessend-3527-lsqd4 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:02PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:13PM WRN log-reader EOF error="stream closed EOF for nperf12-my-ns/tp-tibtunnel-67d8db5dbc-tnkhd (tibtunnel)" +3:17PM ERR logs-stream error="stream logs failed container \"cp-proxy\" in pod \"tp-cp-proxy-79d688cdc8-c5m4k\" is waiting to start: CreateContainerConfigError for nperf12-my-ns/tp-cp-proxy-79d688cdc8-c5m4k (cp-proxy)" +3:17PM ERR logs-stream error="stream logs failed container \"cp-proxy\" in pod \"tp-cp-proxy-79d688cdc8-c5m4k\" is waiting to start: CreateContainerConfigError for nperf12-my-ns/tp-cp-proxy-79d688cdc8-c5m4k (cp-proxy)" +3:17PM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for nperf12-my-ns/tp-cp-proxy-79d688cdc8-c5m4k (cp-proxy)" +3:19PM WRN log-reader EOF error="stream closed EOF for nperf12-my-ns/tp-msg-gateway-0 (tp-msg-gateway)" +3:19PM ERR Command failed error="exit status 1" +3:19PM ERR Exec failed "/usr/local/bin/kubectl exec --context dp-cluster-msg131-ca-mpddev -it -n nperf12-my-ns tp-msg-gateway-0 -c tp-msg-gateway -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +3:19PM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +4:01PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +4:01PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:01PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +4:01PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:01PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +4:01PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:01PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +4:01PM ERR ClusterUpdater failed error="conn check failed (1/5)" +5:44PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": read tcp 10.123.231.142:63151->52.89.62.243:443: read: can't assign requested address" +5:44PM ERR ClusterUpdater failed error="conn check failed (2/5)" +5:44PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +5:44PM ERR ClusterUpdater failed error="conn check failed (2/5)" +5:44PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp 52.89.62.243:443: connect: network is unreachable - error from a previous attempt: http2: client connection lost" +5:44PM ERR ClusterUpdater failed error="conn check failed (2/5)" +5:44PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp 52.89.62.243:443: connect: network is unreachable - error from a previous attempt: http2: client connection lost" +5:44PM ERR ClusterUpdater failed error="conn check failed (2/5)" +6:59PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp 52.89.62.243:443: connect: can't assign requested address" +6:59PM ERR ClusterUpdater failed error="conn check failed (1/5)" +6:59PM ERR can't connect to cluster error="client rate limiter Wait returned an error: context deadline exceeded - error from a previous attempt: http2: client connection lost" +6:59PM ERR ClusterUpdater failed error="conn check failed (1/5)" +6:59PM ERR can't connect to cluster error="client rate limiter Wait returned an error: context deadline exceeded - error from a previous attempt: http2: client connection lost" +6:59PM ERR ClusterUpdater failed error="conn check failed (1/5)" +6:59PM ERR can't connect to cluster error="client rate limiter Wait returned an error: context deadline exceeded - error from a previous attempt: http2: client connection lost" +6:59PM ERR ClusterUpdater failed error="conn check failed (1/5)" +7:01PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +7:01PM ERR ClusterUpdater failed error="conn check failed (1/5)" +7:01PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +7:01PM ERR ClusterUpdater failed error="conn check failed (1/5)" +7:01PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +7:01PM ERR ClusterUpdater failed error="conn check failed (1/5)" +7:01PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded (Client.Timeout exceeded while awaiting headers)" +7:01PM ERR ClusterUpdater failed error="conn check failed (1/5)" +7:30PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp: lookup BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com: no such host" +7:30PM ERR ClusterUpdater failed error="conn check failed (2/5)" +7:30PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp: lookup BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com: no such host - error from a previous attempt: http2: client connection lost" +7:30PM ERR ClusterUpdater failed error="conn check failed (2/5)" +7:30PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp: lookup BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com: no such host" +7:30PM ERR ClusterUpdater failed error="conn check failed (2/5)" +7:30PM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp: lookup BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com: no such host - error from a previous attempt: http2: client connection lost" +7:30PM ERR ClusterUpdater failed error="conn check failed (2/5)" +8:46AM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": read tcp 192.168.1.110:56442->34.208.107.194:443: read: operation timed out" +8:46AM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:46AM WRN  Dial Failed! error="Post \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": context deadline exceeded" +8:46AM ERR refresh failed for gvr: apps/v1/deployments error="Post \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": context deadline exceeded" +8:46AM ERR refresh failed for gvr: apps/v1/deployments error="[list] access denied on resource \"msg-170\":\"apps/v1/deployments\"" +8:46AM ERR refresh failed for gvr: apps/v1/deployments error="[list] access denied on resource \"msg-170\":\"apps/v1/deployments\"" +8:46AM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": read tcp 192.168.1.110:56406->34.208.107.194:443: read: operation timed out" +8:46AM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:46AM ERR refresh failed for gvr: apps/v1/deployments error="[list] access denied on resource \"msg-170\":\"apps/v1/deployments\"" +8:46AM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": read tcp 192.168.1.110:56440->34.208.107.194:443: read: operation timed out" +8:46AM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:46AM ERR refresh failed for gvr: apps/v1/deployments error="[list] access denied on resource \"msg-170\":\"apps/v1/deployments\"" +8:46AM ERR refresh failed for gvr: apps/v1/deployments error="[list] access denied on resource \"msg-170\":\"apps/v1/deployments\"" +8:46AM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": read tcp 192.168.1.110:56390->52.89.62.243:443: read: operation timed out" +8:46AM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:46AM WRN reconciler exited error="context canceled" +8:47AM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +8:47AM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:47AM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +8:47AM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:47AM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +8:47AM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:47AM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +8:47AM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:47AM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp: lookup BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com: no such host - error from a previous attempt: http2: client connection lost" +8:47AM ERR ClusterUpdater failed error="conn check failed (2/5)" +8:47AM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp: lookup BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com: no such host - error from a previous attempt: http2: client connection lost" +8:47AM ERR ClusterUpdater failed error="conn check failed (2/5)" +8:47AM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp: lookup BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com: no such host - error from a previous attempt: http2: client connection lost" +8:47AM ERR ClusterUpdater failed error="conn check failed (2/5)" +8:47AM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp: lookup BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com: no such host" +8:47AM ERR ClusterUpdater failed error="conn check failed (2/5)" +8:47AM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp: lookup BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com: no such host" +8:47AM ERR ClusterUpdater failed error="conn check failed (3/5)" +8:47AM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp: lookup BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com: no such host" +8:47AM ERR ClusterUpdater failed error="conn check failed (3/5)" +8:48AM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp: lookup BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com: no such host" +8:48AM ERR ClusterUpdater failed error="conn check failed (3/5)" +8:48AM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp: lookup BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com: no such host" +8:48AM ERR ClusterUpdater failed error="conn check failed (3/5)" +8:48AM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +8:48AM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +8:48AM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp: lookup BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com: no such host" +8:48AM ERR ClusterUpdater failed error="conn check failed (4/5)" +8:48AM WRN namespace validation failed for: "msg-170" error="user not authorized to list all namespaces" +8:48AM WRN namespace validation failed for: "msg-170" error="user not authorized to list all namespaces" +8:48AM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp: lookup BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com: no such host" +8:48AM ERR ClusterUpdater failed error="conn check failed (4/5)" +8:48AM WRN namespace validation failed for: "msg-170" error="user not authorized to list all namespaces" +8:48AM WRN namespace validation failed for: "msg-170" error="user not authorized to list all namespaces" +8:48AM ERR can't connect to cluster error="Get \"https://BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp: lookup BCFA37B2A7818BF05873A413B2EF63BC.gr7.us-west-2.eks.amazonaws.com: no such host" +8:48AM ERR ClusterUpdater failed error="conn check failed (4/5)" +8:48AM WRN namespace validation failed for: "nperf12-my-ns" error="user not authorized to list all namespaces" +8:48AM WRN namespace validation failed for: "nperf12-my-ns" error="user not authorized to list all namespaces" +9:47AM INF 🐶 K9s starting up... +10:35AM INF 🐶 K9s starting up... +10:35AM INF ✅ Kubernetes connectivity +10:58AM INF 🐶 K9s starting up... +10:58AM INF ✅ Kubernetes connectivity +11:11AM WRN log-reader EOF error="stream closed EOF for cp1-ns/tp-cp-core-upgrade-nrpt-qgr84 (tsc-upgrade)" +11:12AM WRN log-reader canceled error="stream canceled context canceled for tibco-ext/postgresql-0 (postgresql)" +11:12AM WRN log-reader EOF error="stream closed EOF for cp1-ns/tp-cp-core-upgrade-p47h-cbcv9 (tsc-upgrade)" +11:15AM INF 🐶 K9s starting up... +11:15AM INF ✅ Kubernetes connectivity +11:29AM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/emsuiactivation-30914-9g97w (run-test)" +11:30AM ERR Command failed error="exit status 130" +11:30AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-30914-9g97w -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +11:30AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +11:30AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-30914" +11:30AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-uninstall-yite" +11:36AM ERR Command failed error="exit status 130" +11:36AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-19182-dbhnr -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +11:36AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +11:36AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-preinstall-hvb1" +11:36AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-uninstall-qjss" +11:36AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-19182" +11:36AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-emsinit" +11:42AM ERR logs-stream error="stream logs failed container \"cp-proxy\" in pod \"tp-cp-proxy-5b45dd77d5-jtblj\" is waiting to start: CreateContainerConfigError for cp-automation-dp/tp-cp-proxy-5b45dd77d5-jtblj (cp-proxy)" +11:42AM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for cp-automation-dp/tp-cp-proxy-5b45dd77d5-jtblj (cp-proxy)" +11:46AM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/ems-test-ems-1 (ems-test-ems)" +11:46AM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/ems-test-ems-2 (ems-test-ems)" +12:51PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-30533" +1:16PM ERR Command failed error="exit status 137" +1:16PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-16867-62xf7 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:16PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:19PM ERR Command failed error="exit status 137" +1:19PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-30833-xvcst -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:19PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:24PM INF 🐶 K9s starting up... +1:24PM INF ✅ Kubernetes connectivity +1:24PM INF 🐶 K9s starting up... +1:24PM INF ✅ Kubernetes connectivity +1:26PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-19161" +1:27PM ERR Command failed error="exit status 130" +1:27PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-16339-fjp7s -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:27PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:27PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-16339" +1:33PM ERR Command failed error="exit status 137" +1:33PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-10618-xd9nm -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:33PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:43PM ERR Command failed error="exit status 130" +1:43PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-32755-bvs78 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:43PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:43PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-32755" +1:50PM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/emsuibmdpbht-10315-9s8hf (run-test)" +1:51PM ERR Command failed error="exit status 130" +1:51PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-10315-9s8hf -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:51PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:51PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-10315" +1:52PM ERR cp-automation-dp/emsuibmdpbht-5174-pr95r is not in a running state +1:52PM ERR Command failed error="exit status 130" +1:52PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-5174-pr95r -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:52PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:52PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-5174" +1:57PM ERR Command failed error="exit status 130" +1:57PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-2392-4grmr -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:57PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:57PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-2392" +2:02PM ERR Command failed error="exit status 130" +2:02PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-10880-kxvc9 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +2:02PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +2:02PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-10880" +2:05PM ERR logs-stream error="stream logs failed previous terminated container \"main\" in pod \"auto-ems-act-bht-uninstall-mk7c-686jz\" not found for cp-automation-dp/auto-ems-act-bht-uninstall-mk7c-686jz (main)" +2:05PM ERR logs-stream error="stream logs failed previous terminated container \"main\" in pod \"auto-ems-act-bht-uninstall-mk7c-686jz\" not found for cp-automation-dp/auto-ems-act-bht-uninstall-mk7c-686jz (main)" +2:05PM ERR logs-stream error="stream logs failed previous terminated container \"main\" in pod \"auto-ems-act-bht-uninstall-mk7c-686jz\" not found for cp-automation-dp/auto-ems-act-bht-uninstall-mk7c-686jz (main)" +2:05PM ERR logs-stream error="stream logs failed previous terminated container \"main\" in pod \"auto-ems-act-bht-uninstall-mk7c-686jz\" not found for cp-automation-dp/auto-ems-act-bht-uninstall-mk7c-686jz (main)" +2:05PM ERR logs-stream error="stream logs failed previous terminated container \"main\" in pod \"auto-ems-act-bht-uninstall-mk7c-686jz\" not found for cp-automation-dp/auto-ems-act-bht-uninstall-mk7c-686jz (main)" +2:05PM ERR logs-stream error="stream logs failed previous terminated container \"main\" in pod \"auto-ems-act-bht-uninstall-mk7c-686jz\" not found for cp-automation-dp/auto-ems-act-bht-uninstall-mk7c-686jz (main)" +2:05PM ERR logs-stream error="stream logs failed previous terminated container \"main\" in pod \"auto-ems-act-bht-uninstall-mk7c-686jz\" not found for cp-automation-dp/auto-ems-act-bht-uninstall-mk7c-686jz (main)" +2:05PM ERR logs-stream error="stream logs failed previous terminated container \"main\" in pod \"auto-ems-act-bht-uninstall-mk7c-686jz\" not found for cp-automation-dp/auto-ems-act-bht-uninstall-mk7c-686jz (main)" +2:05PM ERR logs-stream error="stream logs failed previous terminated container \"main\" in pod \"auto-ems-act-bht-uninstall-mk7c-686jz\" not found for cp-automation-dp/auto-ems-act-bht-uninstall-mk7c-686jz (main)" +2:05PM ERR logs-stream error="stream logs failed previous terminated container \"main\" in pod \"auto-ems-act-bht-uninstall-mk7c-686jz\" not found for cp-automation-dp/auto-ems-act-bht-uninstall-mk7c-686jz (main)" +2:05PM ERR logs-stream error="stream logs failed previous terminated container \"main\" in pod \"auto-ems-act-bht-uninstall-mk7c-686jz\" not found for cp-automation-dp/auto-ems-act-bht-uninstall-mk7c-686jz (main)" +2:05PM ERR logs-stream error="stream logs failed previous terminated container \"main\" in pod \"auto-ems-act-bht-uninstall-mk7c-686jz\" not found for cp-automation-dp/auto-ems-act-bht-uninstall-mk7c-686jz (main)" +2:05PM ERR logs-stream error="stream logs failed previous terminated container \"main\" in pod \"auto-ems-act-bht-uninstall-mk7c-686jz\" not found for cp-automation-dp/auto-ems-act-bht-uninstall-mk7c-686jz (main)" +2:05PM ERR logs-stream error="stream logs failed previous terminated container \"main\" in pod \"auto-ems-act-bht-uninstall-mk7c-686jz\" not found for cp-automation-dp/auto-ems-act-bht-uninstall-mk7c-686jz (main)" +2:05PM ERR logs-stream error="stream logs failed previous terminated container \"main\" in pod \"auto-ems-act-bht-uninstall-mk7c-686jz\" not found for cp-automation-dp/auto-ems-act-bht-uninstall-mk7c-686jz (main)" +2:05PM ERR logs-stream error="stream logs failed previous terminated container \"main\" in pod \"auto-ems-act-bht-uninstall-mk7c-686jz\" not found for cp-automation-dp/auto-ems-act-bht-uninstall-mk7c-686jz (main)" +2:05PM ERR logs-stream error="stream logs failed previous terminated container \"main\" in pod \"auto-ems-act-bht-uninstall-mk7c-686jz\" not found for cp-automation-dp/auto-ems-act-bht-uninstall-mk7c-686jz (main)" +2:05PM ERR logs-stream error="stream logs failed previous terminated container \"main\" in pod \"auto-ems-act-bht-uninstall-mk7c-686jz\" not found for cp-automation-dp/auto-ems-act-bht-uninstall-mk7c-686jz (main)" +2:05PM ERR logs-stream error="stream logs failed previous terminated container \"main\" in pod \"auto-ems-act-bht-uninstall-mk7c-686jz\" not found for cp-automation-dp/auto-ems-act-bht-uninstall-mk7c-686jz (main)" +2:05PM ERR logs-stream error="stream logs failed previous terminated container \"main\" in pod \"auto-ems-act-bht-uninstall-mk7c-686jz\" not found for cp-automation-dp/auto-ems-act-bht-uninstall-mk7c-686jz (main)" +2:08PM ERR Watcher failed for containers -- failed to locate pod "cp-automation-dp/emsuibmdpbht-13318-mrpl5": pods "emsuibmdpbht-13318-mrpl5" not found error="failed to locate pod \"cp-automation-dp/emsuibmdpbht-13318-mrpl5\": pods \"emsuibmdpbht-13318-mrpl5\" not found" +2:08PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-18442" +2:14PM ERR Command failed error="exit status 137" +2:14PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibmdpbht-7133-4lh44 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +2:14PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +2:17PM ERR Command failed error="exit status 130" +2:17PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-11581-hsdfz -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +2:17PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +2:17PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueuessend-11581" +2:18PM ERR Command failed error="exit status 130" +2:18PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-13632-77jsg -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +2:18PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +2:18PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueuessend-13632" +2:21PM ERR Command failed error="exit status 130" +2:21PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-21288-g6fvn -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +2:21PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +2:21PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueuessend-21288" +2:38PM ERR cp-automation-dp/emsuiqueuessend-2694-nkrwg is not in a running state +2:43PM ERR Command failed error="exit status 137" +2:43PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-2694-nkrwg -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +2:43PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +2:44PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiqueuessend-2694-nkrwg\": pods \"emsuiqueuessend-2694-nkrwg\" not found" +2:44PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiqueuessend-2694-nkrwg\": pods \"emsuiqueuessend-2694-nkrwg\" not found" +2:44PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiqueuessend-2694-nkrwg\": pods \"emsuiqueuessend-2694-nkrwg\" not found" +2:44PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiqueuessend-2694-nkrwg\": pods \"emsuiqueuessend-2694-nkrwg\" not found" +2:44PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiqueuessend-2694-nkrwg\": pods \"emsuiqueuessend-2694-nkrwg\" not found" +2:44PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiqueuessend-2694-nkrwg\": pods \"emsuiqueuessend-2694-nkrwg\" not found" +2:44PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiqueuessend-2694-nkrwg\": pods \"emsuiqueuessend-2694-nkrwg\" not found" +2:44PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiqueuessend-2694-nkrwg\": pods \"emsuiqueuessend-2694-nkrwg\" not found" +2:44PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiqueuessend-2694-nkrwg\": pods \"emsuiqueuessend-2694-nkrwg\" not found" +2:44PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiqueuessend-2694-nkrwg\": pods \"emsuiqueuessend-2694-nkrwg\" not found" +2:44PM WRN reconciler exited error="context canceled" +2:44PM ERR Command failed error="exit status 137" +2:44PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiupgrade-12574-42ppw -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +2:44PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +2:53PM ERR Command failed error="exit status 130" +2:53PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiupgrade-32527-gxww9 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +2:53PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +2:53PM ERR Command failed error="exit status 130" +2:53PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiupgrade-32527-gxww9 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +2:53PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +2:53PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiupgrade-32527" +3:04PM ERR Command failed error="exit status 130" +3:04PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiupgrade-11457-b5lxv -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +3:04PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +3:05PM ERR Command failed error="exit status 130" +3:05PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-9640-z7fnv -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +3:05PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +3:07PM ERR Command failed error="exit status 130" +3:07PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiupgrade-11457-b5lxv -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +3:07PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +3:08PM ERR Command failed error="exit status 130" +3:08PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-9640-z7fnv -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +3:08PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +3:12PM ERR Command failed error="exit status 130" +3:12PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-9640-z7fnv -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +3:12PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +3:14PM INF 🐶 K9s starting up... +3:14PM INF ✅ Kubernetes connectivity +3:16PM ERR Command failed error="exit status 137" +3:16PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-2779-sjbnw -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:16PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:16PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiqueuessend-2779-sjbnw\": pods \"emsuiqueuessend-2779-sjbnw\" not found" +3:16PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiqueuessend-2779-sjbnw\": pods \"emsuiqueuessend-2779-sjbnw\" not found" +3:16PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiqueuessend-2779-sjbnw\": pods \"emsuiqueuessend-2779-sjbnw\" not found" +3:16PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiqueuessend-2779-sjbnw\": pods \"emsuiqueuessend-2779-sjbnw\" not found" +3:16PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiqueuessend-2779-sjbnw\": pods \"emsuiqueuessend-2779-sjbnw\" not found" +3:16PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiqueuessend-2779-sjbnw\": pods \"emsuiqueuessend-2779-sjbnw\" not found" +3:16PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiqueuessend-2779-sjbnw\": pods \"emsuiqueuessend-2779-sjbnw\" not found" +3:16PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiqueuessend-2779-sjbnw\": pods \"emsuiqueuessend-2779-sjbnw\" not found" +3:16PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiqueuessend-2779-sjbnw\": pods \"emsuiqueuessend-2779-sjbnw\" not found" +3:17PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiqueuessend-2779-sjbnw\": pods \"emsuiqueuessend-2779-sjbnw\" not found" +3:17PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiqueuessend-2779-sjbnw\": pods \"emsuiqueuessend-2779-sjbnw\" not found" +3:17PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiqueuessend-2779-sjbnw\": pods \"emsuiqueuessend-2779-sjbnw\" not found" +3:17PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiqueuessend-2779-sjbnw\": pods \"emsuiqueuessend-2779-sjbnw\" not found" +3:18PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiqueuessend-2779-sjbnw\": pods \"emsuiqueuessend-2779-sjbnw\" not found" +3:18PM WRN reconciler exited error="failed to locate pod \"cp-automation-dp/emsuiqueuessend-2779-sjbnw\": pods \"emsuiqueuessend-2779-sjbnw\" not found" +3:18PM ERR failed to locate pod "cp-automation-dp/emsuiqueuessend-2779-sjbnw": pods "emsuiqueuessend-2779-sjbnw" not found +3:19PM ERR Command failed error="exit status 137" +3:19PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiupgrade-2215-mlf8g -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:19PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:45PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-6264" +3:45PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-13737" +3:46PM ERR jobs.batch "emsuiqueuessend-22312" not found +3:48PM ERR Command failed error="exit status 130" +3:48PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-29832-z4tlc -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +3:48PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +3:50PM ERR Command failed error="exit status 137" +3:50PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-20515-xj6xg -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:50PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:51PM ERR cp-automation-dp/emsuiqueuessend-21657-6jnf6 is not in a running state +3:54PM ERR Command failed error="exit status 137" +3:54PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-21657-6jnf6 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:54PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +10:04AM WRN log-reader EOF error="stream closed EOF for cp-automation-dp/auto-ems-upgrade-ems-1 (auto-ems-upgrade-ems)" +10:29AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-20493" +10:42AM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/emsuiactivation-3423-r28bq (run-test)" +10:49AM ERR Command failed error="exit status 137" +10:49AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-3423-r28bq -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +10:49AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +10:49AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-3423-r28bq\": pods \"emsuiactivation-3423-r28bq\" not found" +10:49AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-3423-r28bq\": pods \"emsuiactivation-3423-r28bq\" not found" +10:49AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-3423-r28bq\": pods \"emsuiactivation-3423-r28bq\" not found" +10:49AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-3423-r28bq\": pods \"emsuiactivation-3423-r28bq\" not found" +10:49AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-3423-r28bq\": pods \"emsuiactivation-3423-r28bq\" not found" +10:49AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-3423-r28bq\": pods \"emsuiactivation-3423-r28bq\" not found" +10:49AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-3423-r28bq\": pods \"emsuiactivation-3423-r28bq\" not found" +10:49AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-3423-r28bq\": pods \"emsuiactivation-3423-r28bq\" not found" +10:49AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-3423-r28bq\": pods \"emsuiactivation-3423-r28bq\" not found" +10:49AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-3423-r28bq\": pods \"emsuiactivation-3423-r28bq\" not found" +10:50AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-3423-r28bq\": pods \"emsuiactivation-3423-r28bq\" not found" +10:50AM WRN reconciler exited error="context canceled" +11:10AM ERR Command failed error="exit status 137" +11:10AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-18242-wq6c9 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +11:10AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +11:10AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-18242-wq6c9\": pods \"emsuiactivation-18242-wq6c9\" not found" +11:10AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-18242-wq6c9\": pods \"emsuiactivation-18242-wq6c9\" not found" +11:10AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-18242-wq6c9\": pods \"emsuiactivation-18242-wq6c9\" not found" +11:10AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-18242-wq6c9\": pods \"emsuiactivation-18242-wq6c9\" not found" +11:10AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-18242-wq6c9\": pods \"emsuiactivation-18242-wq6c9\" not found" +11:10AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-18242-wq6c9\": pods \"emsuiactivation-18242-wq6c9\" not found" +11:10AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-18242-wq6c9\": pods \"emsuiactivation-18242-wq6c9\" not found" +11:10AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-18242-wq6c9\": pods \"emsuiactivation-18242-wq6c9\" not found" +11:10AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-18242-wq6c9\": pods \"emsuiactivation-18242-wq6c9\" not found" +11:10AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-18242-wq6c9\": pods \"emsuiactivation-18242-wq6c9\" not found" +11:10AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-18242-wq6c9\": pods \"emsuiactivation-18242-wq6c9\" not found" +11:11AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-18242-wq6c9\": pods \"emsuiactivation-18242-wq6c9\" not found" +11:11AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-18242-wq6c9\": pods \"emsuiactivation-18242-wq6c9\" not found" +11:12AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-18242-wq6c9\": pods \"emsuiactivation-18242-wq6c9\" not found" +11:12AM WRN reconciler exited error="failed to locate pod \"cp-automation-dp/emsuiactivation-18242-wq6c9\": pods \"emsuiactivation-18242-wq6c9\" not found" +11:12AM ERR failed to locate pod "cp-automation-dp/emsuiactivation-18242-wq6c9": pods "emsuiactivation-18242-wq6c9" not found +11:20AM ERR Command failed error="exit status 130" +11:20AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-4124-lsvpt -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +11:20AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +11:20AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-4124" +11:21AM ERR Command failed error="exit status 130" +11:21AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-31366-95w5x -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +11:21AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:31PM ERR Command failed error="exit status 137" +1:31PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-19136-27qmx -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:31PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:37PM ERR Command failed error="exit status 130" +1:37PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-28090-xbpr6 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:37PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:37PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-28090" +1:43PM ERR Command failed error="exit status 137" +1:43PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-7639-flnxx -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:43PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:45PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-16862" +1:45PM ERR cp-automation-dp/emsuibht-28230-szhnd is not in a running state +1:46PM ERR Command failed error="exit status 137" +1:46PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-28230-szhnd -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:46PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:48PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-3177" +1:48PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-30859" +1:52PM ERR Command failed error="exit status 130" +1:52PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-24810-vxsfm -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:52PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:52PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-24810" +1:55PM ERR Command failed error="exit status 137" +1:55PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-8283-sqfcm -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:55PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:57PM ERR Command failed error="exit status 137" +1:57PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-26727-7dmlt -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:57PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:58PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-31657" +1:59PM ERR Command failed error="exit status 137" +1:59PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-15709-xjtn6 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:59PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +4:22PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +4:22PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:22PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +4:22PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:22PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded - error from a previous attempt: http2: client connection lost" +4:22PM ERR ClusterUpdater failed error="conn check failed (2/5)" +4:23PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +4:23PM ERR ClusterUpdater failed error="conn check failed (2/5)" +4:25PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +4:25PM ERR ClusterUpdater failed error="conn check failed (3/5)" +5:19PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +5:19PM ERR ClusterUpdater failed error="conn check failed (3/5)" +5:19PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +5:19PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +5:20PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +5:20PM ERR ClusterUpdater failed error="conn check failed (4/5)" +5:20PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +5:20PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +11:14AM INF 🐶 K9s starting up... +11:14AM INF ✅ Kubernetes connectivity +11:14AM INF 🐶 K9s starting up... +11:14AM INF ✅ Kubernetes connectivity +11:15AM INF 🐶 K9s starting up... +11:15AM INF ✅ Kubernetes connectivity +11:18AM ERR cp-automation-dp/emsuiactivation-6166-bp2mg is not in a running state +11:19AM ERR Command failed error="exit status 130" +11:19AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-6166-bp2mg -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +11:19AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +11:19AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-6166" +11:41AM ERR Command failed error="exit status 137" +11:41AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-23798-fkttf -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +11:41AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +12:37PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueuessend-9924" +12:40PM INF 🐶 K9s starting up... +12:40PM INF ✅ Kubernetes connectivity +12:41PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-6264-tst-scripts" +12:41PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-19161-tst-scripts" +12:41PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-5174-tst-scripts" +12:41PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-30533-tst-scripts" +12:41PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-32755-tst-scripts" +12:41PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-20493-tst-scripts" +12:41PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-2392-tst-scripts" +12:41PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueuessend-9924-tst-scripts" +12:41PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueuessend-21288-tst-scripts" +12:41PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-9656-tst-scripts" +12:41PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-3177-tst-scripts" +12:41PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-16862-tst-scripts" +12:41PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-28090-tst-scripts" +12:41PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-31657-tst-scripts" +12:41PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-10315-tst-scripts" +12:41PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-10880-tst-scripts" +12:41PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiupgrade-32527-tst-scripts" +12:41PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-6166-tst-scripts" +12:41PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-13737-tst-scripts" +12:41PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-16339-tst-scripts" +12:41PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-24810-tst-scripts" +12:41PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-30859-tst-scripts" +12:41PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-18442-tst-scripts" +12:41PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueuessend-11581-tst-scripts" +12:41PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueuessend-13632-tst-scripts" +12:41PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-4124-tst-scripts" +12:41PM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-4124.v1" +12:41PM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-31657.v1" +12:41PM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibmdpbht-5174.v1" +12:41PM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibmdpbht-10880.v1" +12:41PM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiqueuessend-13632.v1" +12:41PM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-20493.v1" +12:41PM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-3177.v1" +12:41PM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-16339.v1" +12:41PM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-24810.v1" +12:41PM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibmdpbht-18442.v1" +12:41PM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibmdpbht-30533.v1" +12:41PM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiqueuessend-9924.v1" +12:41PM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-28090.v1" +12:41PM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-30859.v1" +12:41PM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiqueuessend-11581.v1" +12:41PM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiqueuessend-21288.v1" +12:41PM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiupgrade-32527.v1" +12:41PM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-13737.v1" +12:41PM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-6264.v1" +12:41PM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-16862.v1" +12:41PM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-19161.v1" +12:41PM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibmdpbht-2392.v1" +12:41PM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibmdpbht-10315.v1" +12:41PM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibmdpbht-32755.v1" +12:41PM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-6166.v1" +12:41PM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-9656.v1" +12:42PM ERR Command failed error="exit status 130" +12:42PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-9656-9zxmw -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +12:42PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +12:42PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-9656" +12:44PM INF 🐶 K9s starting up... +12:44PM ERR config refine failed error="unable to activate context \"\": getcontext - invalid context specified: \"\"" +12:44PM ERR Fail to locate metrics-server error="Get \"http://localhost:8080/api\": dial tcp 127.0.0.1:8080: connect: connection refused" +12:44PM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp 127.0.0.1:8080: connect: connection refused" +12:44PM INF ✅ Kubernetes connectivity +12:44PM WRN Save failed. no active config detected +12:44PM ERR Fail to load global/context configuration error="unable to activate context \"\": getcontext - invalid context specified: \"\"\nGet \"http://localhost:8080/api\": dial tcp 127.0.0.1:8080: connect: connection refused\ncannot connect to context: \nk8s connection failed for context: " +12:44PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +12:44PM ERR Load cluster resources - No API server connection +12:44PM ERR failed to list contexts error="no connection" +12:44PM WRN Unable to dial discovery API error="no connection to dial" +12:44PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +12:44PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +12:44PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +12:44PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +12:44PM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp 127.0.0.1:8080: connect: connection refused" +12:44PM ERR Load cluster resources - No API server connection +12:44PM WRN Unable to dial discovery API error="no connection to dial" +12:44PM WRN Plugins load failed: getcontext - invalid context specified: "" +12:44PM WRN Save failed. no active config detected +12:44PM ERR nuking k9s shell pod error="getcontext - invalid context specified: \"\"" +12:44PM WRN Save failed. no active config detected +12:44PM INF 🐶 K9s starting up... +12:44PM ERR config refine failed error="unable to activate context \"\": getcontext - invalid context specified: \"\"" +12:44PM ERR Fail to locate metrics-server error="Get \"http://localhost:8080/api\": dial tcp 127.0.0.1:8080: connect: connection refused" +12:44PM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp 127.0.0.1:8080: connect: connection refused" +12:44PM INF ✅ Kubernetes connectivity +12:44PM WRN Save failed. no active config detected +12:44PM ERR Fail to load global/context configuration error="unable to activate context \"\": getcontext - invalid context specified: \"\"\nGet \"http://localhost:8080/api\": dial tcp 127.0.0.1:8080: connect: connection refused\ncannot connect to context: \nk8s connection failed for context: " +12:44PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +12:44PM ERR Load cluster resources - No API server connection +12:44PM ERR failed to list contexts error="no connection" +12:44PM WRN Unable to dial discovery API error="no connection to dial" +12:44PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +12:44PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +12:44PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +12:44PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +12:44PM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp 127.0.0.1:8080: connect: connection refused" +12:44PM ERR Load cluster resources - No API server connection +12:44PM WRN Unable to dial discovery API error="no connection to dial" +12:44PM WRN Plugins load failed: getcontext - invalid context specified: "" +12:45PM WRN Plugins load failed: getcontext - invalid context specified: "" +12:45PM WRN Plugins load failed: getcontext - invalid context specified: "" +12:45PM WRN Save failed. no active config detected +12:45PM ERR nuking k9s shell pod error="getcontext - invalid context specified: \"\"" +12:45PM WRN Save failed. no active config detected +12:45PM INF 🐶 K9s starting up... +12:45PM ERR config refine failed error="unable to activate context \"\": getcontext - invalid context specified: \"\"" +12:45PM ERR Fail to locate metrics-server error="Get \"http://localhost:8080/api\": dial tcp 127.0.0.1:8080: connect: connection refused" +12:45PM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp 127.0.0.1:8080: connect: connection refused" +12:45PM INF ✅ Kubernetes connectivity +12:45PM WRN Save failed. no active config detected +12:45PM ERR Fail to load global/context configuration error="unable to activate context \"\": getcontext - invalid context specified: \"\"\nGet \"http://localhost:8080/api\": dial tcp 127.0.0.1:8080: connect: connection refused\ncannot connect to context: \nk8s connection failed for context: " +12:45PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +12:45PM ERR Load cluster resources - No API server connection +12:45PM ERR failed to list contexts error="no connection" +12:45PM WRN Unable to dial discovery API error="no connection to dial" +12:45PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +12:45PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +12:45PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +12:45PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +12:45PM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp 127.0.0.1:8080: connect: connection refused" +12:45PM ERR Load cluster resources - No API server connection +12:45PM WRN Unable to dial discovery API error="no connection to dial" +12:45PM WRN Plugins load failed: getcontext - invalid context specified: "" +12:45PM WRN Plugins load failed: getcontext - invalid context specified: "" +12:45PM WRN Plugins load failed: getcontext - invalid context specified: "" +12:45PM WRN Save failed. no active config detected +12:45PM ERR nuking k9s shell pod error="getcontext - invalid context specified: \"\"" +12:45PM WRN Save failed. no active config detected +12:45PM INF 🐶 K9s starting up... +12:45PM ERR config refine failed error="unable to activate context \"\": getcontext - invalid context specified: \"\"" +12:45PM ERR Fail to locate metrics-server error="Get \"http://localhost:8080/api\": dial tcp 127.0.0.1:8080: connect: connection refused" +12:45PM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp 127.0.0.1:8080: connect: connection refused" +12:45PM INF ✅ Kubernetes connectivity +12:45PM WRN Save failed. no active config detected +12:45PM ERR Fail to load global/context configuration error="unable to activate context \"\": getcontext - invalid context specified: \"\"\nGet \"http://localhost:8080/api\": dial tcp 127.0.0.1:8080: connect: connection refused\ncannot connect to context: \nk8s connection failed for context: " +12:45PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +12:45PM ERR Load cluster resources - No API server connection +12:45PM ERR failed to list contexts error="no connection" +12:45PM WRN Unable to dial discovery API error="no connection to dial" +12:45PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +12:45PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +12:45PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +12:45PM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +12:45PM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp 127.0.0.1:8080: connect: connection refused" +12:45PM ERR Load cluster resources - No API server connection +12:45PM WRN Unable to dial discovery API error="no connection to dial" +12:45PM WRN Plugins load failed: getcontext - invalid context specified: "" +12:45PM WRN Plugins load failed: getcontext - invalid context specified: "" +12:45PM WRN Plugins load failed: getcontext - invalid context specified: "" +12:45PM WRN Plugins load failed: getcontext - invalid context specified: "" +1:03PM ERR Command failed error="exit status 137" +1:03PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-7917-mh2m6 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:03PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:08PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-28268" +1:21PM INF 🐶 K9s starting up... +1:21PM INF ✅ Kubernetes connectivity +1:43PM ERR Command failed error="exit status 130" +1:43PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-11934-gm9rj -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:43PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:51PM ERR Command failed error="exit status 137" +1:51PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-11934-gm9rj -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:51PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:51PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-11934-gm9rj\": pods \"emsuiactivation-11934-gm9rj\" not found" +1:51PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-11934-gm9rj\": pods \"emsuiactivation-11934-gm9rj\" not found" +1:51PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-11934-gm9rj\": pods \"emsuiactivation-11934-gm9rj\" not found" +1:51PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-11934-gm9rj\": pods \"emsuiactivation-11934-gm9rj\" not found" +1:51PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-11934-gm9rj\": pods \"emsuiactivation-11934-gm9rj\" not found" +1:51PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-11934-gm9rj\": pods \"emsuiactivation-11934-gm9rj\" not found" +1:51PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-11934-gm9rj\": pods \"emsuiactivation-11934-gm9rj\" not found" +1:51PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-11934-gm9rj\": pods \"emsuiactivation-11934-gm9rj\" not found" +1:51PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-11934-gm9rj\": pods \"emsuiactivation-11934-gm9rj\" not found" +1:51PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-11934-gm9rj\": pods \"emsuiactivation-11934-gm9rj\" not found" +1:52PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-11934-gm9rj\": pods \"emsuiactivation-11934-gm9rj\" not found" +1:52PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-11934-gm9rj\": pods \"emsuiactivation-11934-gm9rj\" not found" +1:53PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-11934-gm9rj\": pods \"emsuiactivation-11934-gm9rj\" not found" +1:53PM WRN reconciler exited error="context canceled" +1:53PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-15790" +2:05PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-4966" +2:07PM ERR Command failed error="exit status 130" +2:07PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiupgrade-18059-tvqvp -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +2:07PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +2:07PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiupgrade-18059" +2:24PM ERR Command failed error="exit status 137" +2:24PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiupgrade-17251-5p68q -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +2:24PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +2:50PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +2:50PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:16PM ERR Command failed error="exit status 137" +3:16PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-17956-g6h52 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:16PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:50PM ERR Command failed error="exit status 137" +3:50PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiupgrade-13854-s4fdm -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:50PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +4:01PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +4:01PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:02PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +4:02PM ERR ClusterUpdater failed error="conn check failed (2/5)" +4:06PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +4:06PM ERR ClusterUpdater failed error="conn check failed (3/5)" +5:00PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +5:00PM ERR ClusterUpdater failed error="conn check failed (4/5)" +5:00PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +5:00PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +9:01AM INF 🐶 K9s starting up... +9:01AM INF ✅ Kubernetes connectivity +9:16AM INF 🐶 K9s starting up... +9:16AM INF ✅ Kubernetes connectivity +9:19AM INF 🐶 K9s starting up... +9:19AM INF ✅ Kubernetes connectivity +9:19AM INF 🐶 K9s starting up... +9:19AM INF ✅ Kubernetes connectivity +9:47AM ERR Command failed error="exit status 130" +9:47AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-14182-7z5nk -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +9:47AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +9:47AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-14182" +9:48AM INF 🐶 K9s starting up... +9:48AM INF ✅ Kubernetes connectivity +10:06AM WRN log-reader canceled error="stream canceled context canceled for cp-automation-dp/emsuiactivation-28098-gntxz (run-test)" +10:29AM ERR Command failed error="exit status 137" +10:29AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-28098-gntxz -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +10:29AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +10:34AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-19798" +10:40AM ERR Command failed error="exit status 137" +10:40AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-22467-2t4g7 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +10:40AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +11:01AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +11:01AM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:17PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +2:17PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:45PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +3:45PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:09PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +4:09PM ERR ClusterUpdater failed error="conn check failed (1/5)" +6:08PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)" +6:08PM ERR ClusterUpdater failed error="conn check failed (2/5)" +6:55PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +6:55PM ERR ClusterUpdater failed error="conn check failed (3/5)" +6:55PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +6:55PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +8:54AM INF 🐶 K9s starting up... +8:54AM INF ✅ Kubernetes connectivity +9:02AM INF 🐶 K9s starting up... +9:02AM INF ✅ Kubernetes connectivity +9:41AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +9:41AM ERR ClusterUpdater failed error="conn check failed (1/5)" +9:46AM INF 🐶 K9s starting up... +9:46AM INF ✅ Kubernetes connectivity +9:47AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-25425" +9:49AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-3040" +10:15AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +10:15AM ERR ClusterUpdater failed error="conn check failed (1/5)" +11:33AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiupgrade-19585" +11:33AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-upgrade-uninstall-gki8" +11:33AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-uninstall-ozus" +11:33AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-uninstall-ozqj" +11:33AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-upgrade-uninstall-mcum" +11:34AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-27380" +11:36AM ERR Command failed error="exit status 130" +11:36AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-22374-cb6x4 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +11:36AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +11:36AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-22374" +11:40AM ERR Command failed error="exit status 137" +11:40AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-1263-w72ls -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +11:40AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +11:40AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-1263-w72ls" +12:54PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +12:54PM ERR ClusterUpdater failed error="conn check failed (1/5)" +12:54PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-5927" +12:55PM ERR cp-automation-dp/emsuibht-16966-5kcg8 is not in a running state +12:58PM ERR Command failed error="exit status 137" +12:58PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-16966-5kcg8 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +12:58PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +12:58PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-16966-5kcg8\": pods \"emsuibht-16966-5kcg8\" not found" +12:58PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-16966-5kcg8\": pods \"emsuibht-16966-5kcg8\" not found" +12:58PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-16966-5kcg8\": pods \"emsuibht-16966-5kcg8\" not found" +12:58PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-16966-5kcg8\": pods \"emsuibht-16966-5kcg8\" not found" +12:59PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-16966-5kcg8\": pods \"emsuibht-16966-5kcg8\" not found" +12:59PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-16966-5kcg8\": pods \"emsuibht-16966-5kcg8\" not found" +12:59PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-16966-5kcg8\": pods \"emsuibht-16966-5kcg8\" not found" +12:59PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-16966-5kcg8\": pods \"emsuibht-16966-5kcg8\" not found" +12:59PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-16966-5kcg8\": pods \"emsuibht-16966-5kcg8\" not found" +12:59PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-16966-5kcg8\": pods \"emsuibht-16966-5kcg8\" not found" +12:59PM WRN reconciler exited error="context canceled" +12:59PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-4343" +12:59PM ERR cp-automation-dp/emsuibht-4730-wrftv is not in a running state +1:01PM ERR Command failed error="exit status 137" +1:01PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-4730-wrftv -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:01PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:04PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-3263" +1:05PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-preinstall-iugv" +1:05PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-479-uninstall-bymg" +1:05PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-uninstall-l8bo" +1:05PM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-upgrade-preinstall-fyag" +1:05PM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-3040.v1" +1:05PM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-4343.v1" +1:05PM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-14182.v1" +1:05PM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-3263.v1" +1:05PM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-5927.v1" +1:05PM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-19798.v1" +1:05PM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-15790.v1" +1:05PM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-27380.v1" +1:05PM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-22374.v1" +1:05PM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-25425.v1" +1:05PM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiupgrade-19585.v1" +1:05PM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-4966.v1" +1:05PM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-1263.v1" +1:05PM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-28268.v1" +1:05PM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiupgrade-18059.v1" +1:06PM ERR cp-automation-dp/emsuibht-20258-j6l9t is not in a running state +1:07PM ERR Command failed error="exit status 137" +1:07PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-20258-j6l9t -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:07PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:08PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-23313" +1:09PM ERR Command failed error="exit status 137" +1:09PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-6746-czzsd -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:09PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:14PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-31358" +1:17PM ERR Command failed error="exit status 130" +1:17PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-873-rc46c -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:17PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:17PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-873" +1:18PM ERR Command failed error="exit status 130" +1:18PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-10037-wt527 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:18PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:19PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-10037" +1:23PM ERR Command failed error="exit status 137" +1:23PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-25639-cstxx -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:23PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:23PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-27419" +1:24PM ERR Command failed error="exit status 137" +1:24PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-5322-tzfvn -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:24PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:26PM ERR cp-automation-dp/emsuibht-22568-g9dp7 is not in a running state +1:27PM ERR Command failed error="exit status 137" +1:27PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-22568-g9dp7 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:27PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:27PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-2965" +1:32PM ERR Command failed error="exit status 137" +1:32PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-27772-4w456 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:32PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:38PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-22187" +1:44PM ERR Command failed error="exit status 137" +1:44PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-574-7h649 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +1:44PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +1:44PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-574-7h649\": pods \"emsuibht-574-7h649\" not found" +1:44PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-574-7h649\": pods \"emsuibht-574-7h649\" not found" +1:44PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-574-7h649\": pods \"emsuibht-574-7h649\" not found" +1:44PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-574-7h649\": pods \"emsuibht-574-7h649\" not found" +1:44PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-574-7h649\": pods \"emsuibht-574-7h649\" not found" +1:44PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-574-7h649\": pods \"emsuibht-574-7h649\" not found" +1:44PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-574-7h649\": pods \"emsuibht-574-7h649\" not found" +1:44PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-574-7h649\": pods \"emsuibht-574-7h649\" not found" +1:44PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-574-7h649\": pods \"emsuibht-574-7h649\" not found" +1:44PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-574-7h649\": pods \"emsuibht-574-7h649\" not found" +1:44PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-574-7h649\": pods \"emsuibht-574-7h649\" not found" +1:44PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-574-7h649\": pods \"emsuibht-574-7h649\" not found" +1:45PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-574-7h649\": pods \"emsuibht-574-7h649\" not found" +1:45PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-574-7h649\": pods \"emsuibht-574-7h649\" not found" +1:45PM WRN reconciler exited error="failed to locate pod \"cp-automation-dp/emsuibht-574-7h649\": pods \"emsuibht-574-7h649\" not found" +1:45PM ERR failed to locate pod "cp-automation-dp/emsuibht-574-7h649": pods "emsuibht-574-7h649" not found +1:48PM ERR Command failed error="exit status 130" +1:48PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-4307-58rfg -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:48PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:48PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-4307" +1:49PM ERR Command failed error="exit status 130" +1:49PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-29942-tzn2v -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:49PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:49PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-29942" +1:51PM ERR Command failed error="exit status 130" +1:51PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-28511-6prjv -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:51PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:51PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-28511" +1:57PM ERR Command failed error="exit status 130" +1:57PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-2628-2srtl -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:57PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:57PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-2628" +1:58PM ERR Command failed error="exit status 130" +1:58PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-29307-hw57v -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +1:58PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +1:58PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-29307" +2:03PM ERR Command failed error="exit status 130" +2:03PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-17766-t9hfg -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +2:03PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +2:03PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-17766" +2:04PM ERR Command failed error="exit status 130" +2:04PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-29677-jj7hb -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +2:04PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +2:05PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-29677" +2:09PM ERR Command failed error="exit status 137" +2:09PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-6865-slxlh -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +2:09PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +2:11PM ERR Command failed error="exit status 137" +2:11PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-7196-9kbk9 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +2:11PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +2:12PM ERR Command failed error="exit status 137" +2:12PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-8801-spgkm -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +2:12PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +2:22PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-5690" +2:26PM ERR Command failed error="exit status 137" +2:26PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-23689-tv7t6 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +2:26PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +2:26PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-23689-tv7t6\": pods \"emsuibht-23689-tv7t6\" not found" +2:26PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-23689-tv7t6\": pods \"emsuibht-23689-tv7t6\" not found" +2:26PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-23689-tv7t6\": pods \"emsuibht-23689-tv7t6\" not found" +2:26PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-23689-tv7t6\": pods \"emsuibht-23689-tv7t6\" not found" +2:26PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-23689-tv7t6\": pods \"emsuibht-23689-tv7t6\" not found" +2:26PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-23689-tv7t6\": pods \"emsuibht-23689-tv7t6\" not found" +2:26PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-23689-tv7t6\": pods \"emsuibht-23689-tv7t6\" not found" +2:26PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-23689-tv7t6\": pods \"emsuibht-23689-tv7t6\" not found" +2:26PM WRN reconciler exited error="context canceled" +2:26PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-17530" +2:27PM ERR Command failed error="exit status 137" +2:27PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-24509-s8klr -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +2:27PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +2:31PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-17454" +2:31PM ERR Command failed error="exit status 130" +2:31PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-30314-vhdbh -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +2:31PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +2:31PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-30314" +2:32PM ERR Command failed error="exit status 130" +2:32PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-4467-grb8p -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +2:32PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +2:32PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-4467" +2:35PM ERR Command failed error="exit status 130" +2:35PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-3946-nj9b7 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +2:35PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +2:35PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-3946" +2:37PM ERR Command failed error="exit status 137" +2:37PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-3464-d2rz6 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +2:37PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +2:51PM ERR Command failed error="exit status 137" +2:51PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-6550-pqdkj -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +2:51PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +2:51PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-6550-pqdkj\": pods \"emsuibht-6550-pqdkj\" not found" +2:51PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-6550-pqdkj\": pods \"emsuibht-6550-pqdkj\" not found" +2:51PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-6550-pqdkj\": pods \"emsuibht-6550-pqdkj\" not found" +2:51PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-6550-pqdkj\": pods \"emsuibht-6550-pqdkj\" not found" +2:51PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-6550-pqdkj\": pods \"emsuibht-6550-pqdkj\" not found" +2:51PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-6550-pqdkj\": pods \"emsuibht-6550-pqdkj\" not found" +2:51PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-6550-pqdkj\": pods \"emsuibht-6550-pqdkj\" not found" +2:51PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-6550-pqdkj\": pods \"emsuibht-6550-pqdkj\" not found" +2:51PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-6550-pqdkj\": pods \"emsuibht-6550-pqdkj\" not found" +2:51PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-6550-pqdkj\": pods \"emsuibht-6550-pqdkj\" not found" +2:51PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-6550-pqdkj\": pods \"emsuibht-6550-pqdkj\" not found" +2:52PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-6550-pqdkj\": pods \"emsuibht-6550-pqdkj\" not found" +2:52PM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuibht-6550-pqdkj\": pods \"emsuibht-6550-pqdkj\" not found" +2:52PM WRN reconciler exited error="failed to locate pod \"cp-automation-dp/emsuibht-6550-pqdkj\": pods \"emsuibht-6550-pqdkj\" not found" +2:52PM ERR failed to locate pod "cp-automation-dp/emsuibht-6550-pqdkj": pods "emsuibht-6550-pqdkj" not found +3:13PM ERR Command failed error="exit status 137" +3:13PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-24936-xp9vl -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:13PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:17PM ERR Command failed error="exit status 137" +3:17PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-18526-jv88n -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:17PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:26PM ERR Command failed error="exit status 1" +3:26PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-14236-bpfgk -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +3:26PM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +3:26PM WRN  Dial Failed! error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": http2: client connection lost" +3:26PM ERR refresh failed for gvr: v1/pods error="Post \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": http2: client connection lost" +3:26PM ERR Watcher failed for v1/pods -- [list] access denied on resource "cp-automation-dp":"v1/pods" error="[list] access denied on resource \"cp-automation-dp\":\"v1/pods\"" +3:26PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable - error from a previous attempt: http2: client connection lost" +3:26PM ERR Cluster updater failed! error="conn check failed (1/5)" +8:56AM ERR refresh failed for gvr: batch/v1/jobs error="ACCESS -- No API server connection" +8:56AM WRN Unable to dial discovery API error="no connection to dial" +8:56AM ERR Watcher failed for batch/v1/jobs -- ACCESS -- No API server connection error="ACCESS -- No API server connection" +8:56AM ERR refresh failed for gvr: batch/v1/jobs error="ACCESS -- No API server connection" +8:56AM ERR Watcher failed for batch/v1/jobs -- ACCESS -- No API server connection error="ACCESS -- No API server connection" +8:56AM ERR Delete failed with `ACCESS -- No API server connection error="ACCESS -- No API server connection" +8:56AM ERR refresh failed for gvr: batch/v1/jobs error="ACCESS -- No API server connection" +8:56AM ERR Watcher failed for batch/v1/jobs -- ACCESS -- No API server connection error="ACCESS -- No API server connection" +8:56AM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +8:56AM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +8:56AM INF 🐶 K9s starting up... +8:56AM INF ✅ Kubernetes connectivity +8:56AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-482-preinstall-ql0q" +8:56AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-482-preinstall-zwp1" +8:56AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-482-preinstall-xuag" +8:56AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-482-preinstall-swjl" +8:56AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-482-preinstall-hjgi" +8:56AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-482-preinstall-5rhm" +8:56AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-482-preinstall-vkjs" +8:56AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-482-preinstall-9npl" +9:28AM ERR Command failed error="exit status 130" +9:28AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-15026-j4q5n -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +9:28AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +9:28AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-15026" +9:29AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-482-emsinit" +9:29AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-482-emsinit" +9:29AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-upgrade-ui-auto-482-emsinit" +9:29AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-preinstall-40aq" +9:29AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-preinstall-sozh" +9:29AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-preinstall-l7hl" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-29307.v1" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-5690.v1" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-2628.v1" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-873.v1" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.auto-ems-upgrade-ui-auto-482-d4451fhj2q3s73abfqgg.v1" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.auto-ems-act-bht-ui-auto-482-d4462thj2q3s73abfqjg.v1" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.auto-ems-act-bht-d44ceepj2q3s73abfqn0.v1" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-10037.v1" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-22187.v1" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.auto-ems-act-bht-ui-auto-482-d4466c1j2q3s73abfqk0.v1" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.auto-ems-act-bht-ui-auto-482-d445rs9j2q3s73abfqig.v1" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-31358.v1" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-17454.v1" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuiactivation-15026.v1" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.auto-ems-bht-ui-auto-482-d446ne9j2q3s73abfqm0.v1" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-30314.v1" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-28511.v1" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-17766.v1" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-3946.v1" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.auto-ems-bht-ui-auto-482-d446ippj2q3s73abfqlg.v1" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.auto-ems-bht-ui-auto-481-d43fumhj2q3s73ar4r7g.v1" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-23313.v1" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-4307.v1" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.auto-ems-upgrade-ui-auto-481-d43gct1j2q3s73ar4r9g.v1" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.auto-ems-upgrade-d42e9p34sfuc738eov4g.v1" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.auto-ems-bht-ui-auto-482-d446e3pj2q3s73abfql0.v1" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.auto-ems-bht-ui-auto-480-d42qhs1j2q3s73ebtdrg.v1" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.auto-ems-act-bht-d44ciipj2q3s73abfqng.v1" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.auto-ems-act-bht-d44c739j2q3s73abfqmg.v1" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-17530.v1" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-4467.v1" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-2965.v1" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.auto-ems-act-bht-ui-auto-482-d445vc9j2q3s73abfqj0.v1" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-27419.v1" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-14236.v1" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.auto-ems-upgrade-ui-auto-482-d44569hj2q3s73abfqh0.v1" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.auto-ems-bht-ui-auto-482-d4469f1j2q3s73abfqkg.v1" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-29942.v1" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/sh.helm.release.v1.emsuibht-29677.v1" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiupgrade-19585-tst-scripts" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-481-params" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-2628-tst-scripts" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-3040-tst-scripts" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-5927-tst-scripts" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-17766-tst-scripts" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-27419-tst-scripts" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-28268-tst-scripts" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-5690-tst-scripts" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-481-clients" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-482-clients" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-482-scripts" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-3263-tst-scripts" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-17530-tst-scripts" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-25425-tst-scripts" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-480-clients" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-4966-tst-scripts" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-15790-tst-scripts" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-873-tst-scripts" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-28511-tst-scripts" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-481-scripts" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-1263-tst-scripts" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-29942-tst-scripts" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-29677-tst-scripts" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-14182-tst-scripts" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-27380-tst-scripts" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-2965-tst-scripts" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-10037-tst-scripts" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-22187-tst-scripts" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-30314-tst-scripts" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-482-params" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-15026-tst-scripts" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-4307-tst-scripts" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-4343-tst-scripts" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-17454-tst-scripts" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-19798-tst-scripts" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-22374-tst-scripts" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-29307-tst-scripts" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-4467-tst-scripts" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-23313-tst-scripts" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-31358-tst-scripts" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-480-params" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-480-scripts" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-3946-tst-scripts" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/emsuibht-14236-tst-scripts" +9:30AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiupgrade-18059-tst-scripts" +9:35AM ERR Command failed error="exit status 137" +9:35AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-30860-vwkzf -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +9:35AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +9:35AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-30860-vwkzf\": pods \"emsuiactivation-30860-vwkzf\" not found" +9:35AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-30860-vwkzf\": pods \"emsuiactivation-30860-vwkzf\" not found" +9:35AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-30860-vwkzf\": pods \"emsuiactivation-30860-vwkzf\" not found" +9:35AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-30860-vwkzf\": pods \"emsuiactivation-30860-vwkzf\" not found" +9:35AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-30860-vwkzf\": pods \"emsuiactivation-30860-vwkzf\" not found" +9:35AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-30860-vwkzf\": pods \"emsuiactivation-30860-vwkzf\" not found" +9:36AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-30860-vwkzf\": pods \"emsuiactivation-30860-vwkzf\" not found" +9:36AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-30860-vwkzf\": pods \"emsuiactivation-30860-vwkzf\" not found" +9:36AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-30860-vwkzf\": pods \"emsuiactivation-30860-vwkzf\" not found" +9:36AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-30860-vwkzf\": pods \"emsuiactivation-30860-vwkzf\" not found" +9:36AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-30860-vwkzf\": pods \"emsuiactivation-30860-vwkzf\" not found" +9:36AM WRN reconciler exited error="context canceled" +9:36AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-8302" +10:02AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-20834" +10:08AM INF 🐶 K9s starting up... +10:08AM INF ✅ Kubernetes connectivity +10:19AM WRN log-reader EOF error="stream closed EOF for cp-automation-dp/tp-msg-gateway-preinstall-o8nf-6txs4 (main)" +10:23AM INF 🐶 K9s starting up... +10:23AM INF ✅ Kubernetes connectivity +10:24AM INF 🐶 K9s starting up... +10:24AM INF ✅ Kubernetes connectivity +10:24AM WRN Deleted (0) portforward for "cp-automation-dp/ems-data-auto-ems-bht-ui-auto-480-ems-1" +10:28AM WRN Deleted (0) portforward for "cp-automation-dp/ems-data-auto-ems-bht-ui-auto-480-ems-1" +10:31AM INF 🐶 K9s starting up... +10:31AM INF ✅ Kubernetes connectivity +10:32AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-480-ems-2" +10:32AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-481-ems-0" +10:32AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-481-ems-1" +10:32AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-481-ems-2" +10:32AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-480-ems-0" +10:32AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-bht-ui-auto-480-ems-1" +10:33AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/auto-ems-bht-preinstall-xvvw-6x2cg\": pods \"auto-ems-bht-preinstall-xvvw-6x2cg\" not found" +10:33AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/auto-ems-bht-preinstall-xvvw-6x2cg\": pods \"auto-ems-bht-preinstall-xvvw-6x2cg\" not found" +10:33AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/auto-ems-bht-preinstall-xvvw-6x2cg\": pods \"auto-ems-bht-preinstall-xvvw-6x2cg\" not found" +10:33AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/auto-ems-bht-preinstall-xvvw-6x2cg\": pods \"auto-ems-bht-preinstall-xvvw-6x2cg\" not found" +10:34AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/auto-ems-bht-preinstall-xvvw-6x2cg\": pods \"auto-ems-bht-preinstall-xvvw-6x2cg\" not found" +10:34AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/auto-ems-bht-preinstall-xvvw-6x2cg\": pods \"auto-ems-bht-preinstall-xvvw-6x2cg\" not found" +10:34AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/auto-ems-bht-preinstall-xvvw-6x2cg\": pods \"auto-ems-bht-preinstall-xvvw-6x2cg\" not found" +10:34AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/auto-ems-bht-preinstall-xvvw-6x2cg\": pods \"auto-ems-bht-preinstall-xvvw-6x2cg\" not found" +10:34AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/auto-ems-bht-preinstall-xvvw-6x2cg\": pods \"auto-ems-bht-preinstall-xvvw-6x2cg\" not found" +10:34AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/auto-ems-bht-preinstall-xvvw-6x2cg\": pods \"auto-ems-bht-preinstall-xvvw-6x2cg\" not found" +10:34AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/auto-ems-bht-preinstall-xvvw-6x2cg\": pods \"auto-ems-bht-preinstall-xvvw-6x2cg\" not found" +10:34AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/auto-ems-bht-preinstall-xvvw-6x2cg\": pods \"auto-ems-bht-preinstall-xvvw-6x2cg\" not found" +10:35AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/auto-ems-bht-preinstall-xvvw-6x2cg\": pods \"auto-ems-bht-preinstall-xvvw-6x2cg\" not found" +10:35AM WRN reconciler exited error="failed to locate pod \"cp-automation-dp/auto-ems-bht-preinstall-xvvw-6x2cg\": pods \"auto-ems-bht-preinstall-xvvw-6x2cg\" not found" +10:35AM ERR failed to locate pod "cp-automation-dp/auto-ems-bht-preinstall-xvvw-6x2cg": pods "auto-ems-bht-preinstall-xvvw-6x2cg" not found +10:39AM ERR logs-stream error="stream logs failed container \"tibtunnel-init\" in pod \"tp-tibtunnel-77d6799b44-5t4gc\" is waiting to start: PodInitializing for cp-automation-dp/tp-tibtunnel-77d6799b44-5t4gc (tibtunnel-init)" +10:39AM ERR logs-stream error="stream logs failed client rate limiter Wait returned an error: context canceled for cp-automation-dp/tp-tibtunnel-77d6799b44-5t4gc (tibtunnel-init)" +10:39AM ERR Command failed error="exit status 1" +10:39AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp tp-tibtunnel-77d6799b44-5t4gc -c tibtunnel-init -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +10:39AM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +10:43AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +10:43AM ERR ClusterUpdater failed error="conn check failed (1/5)" +10:43AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/auto-ems-bht-preinstall-xvvw-6x2cg\": pods \"auto-ems-bht-preinstall-xvvw-6x2cg\" not found" +10:43AM ERR Watcher failed for containers -- failed to locate pod "cp-automation-dp/auto-ems-bht-preinstall-xvvw-6x2cg": pods "auto-ems-bht-preinstall-xvvw-6x2cg" not found error="failed to locate pod \"cp-automation-dp/auto-ems-bht-preinstall-xvvw-6x2cg\": pods \"auto-ems-bht-preinstall-xvvw-6x2cg\" not found" +10:43AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +10:43AM ERR ClusterUpdater failed error="conn check failed (1/5)" +10:57AM INF 🐶 K9s starting up... +10:57AM INF ✅ Kubernetes connectivity +11:03AM ERR Command failed error="exit status 137" +11:03AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuibht-13318-sc5sz -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +11:03AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +12:36PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +12:36PM ERR ClusterUpdater failed error="conn check failed (1/5)" +12:38PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +12:38PM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:23PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +2:23PM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:53PM INF 🐶 K9s starting up... +2:53PM INF ✅ Kubernetes connectivity +3:24PM ERR Command failed error="exit status 130" +3:24PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-15976-dmpvq -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +3:24PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +3:24PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiqueuessend-15976" +3:28PM ERR Command failed error="exit status 137" +3:28PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiqueuessend-10874-747jv -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +3:28PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +3:43PM ERR Command failed error="exit status 130" +3:43PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-19719-nfbl6 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +3:43PM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +3:43PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-19719" +3:51PM WRN Deleted (0) portforward for "cp-automation-dp/emsuibmdpbht-3814" +4:09PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +4:09PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:09PM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +4:09PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:11PM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp: lookup 5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com: no such host" +4:11PM ERR ClusterUpdater failed error="conn check failed (2/5)" +4:11PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +4:11PM ERR ClusterUpdater failed error="conn check failed (2/5)" +4:40PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: operation timed out" +4:40PM ERR ClusterUpdater failed error="conn check failed (3/5)" +4:40PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +4:40PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +4:53PM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": read tcp 10.70.228.76:64574->54.190.15.195:443: read: operation timed out" +4:53PM ERR ClusterUpdater failed error="conn check failed (1/5)" +5:01PM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp: lookup 5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com: no such host" +5:01PM ERR ClusterUpdater failed error="conn check failed (2/5)" +5:16PM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp: lookup 5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com: no such host" +5:16PM ERR ClusterUpdater failed error="conn check failed (3/5)" +6:21PM ERR can't connect to cluster error="client rate limiter Wait returned an error: context deadline exceeded - error from a previous attempt: http2: client connection lost" +6:21PM ERR ClusterUpdater failed error="conn check failed (1/5)" +7:18PM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +7:18PM ERR ClusterUpdater failed error="conn check failed (1/5)" +7:56AM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded (Client.Timeout exceeded while awaiting headers)" +7:56AM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:35AM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp: lookup 5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com: no such host" +8:35AM ERR ClusterUpdater failed error="conn check failed (2/5)" +8:38AM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +8:38AM ERR ClusterUpdater failed error="conn check failed (1/5)" +10:42AM INF 🐶 K9s starting up... +10:42AM INF ✅ Kubernetes connectivity +11:03AM INF 🐶 K9s starting up... +11:03AM INF ✅ Kubernetes connectivity +11:05AM INF 🐶 K9s starting up... +11:05AM INF ✅ Kubernetes connectivity +11:32AM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +11:32AM ERR ClusterUpdater failed error="conn check failed (1/5)" +12:12PM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +12:12PM ERR ClusterUpdater failed error="conn check failed (1/5)" +1:46PM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +1:46PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:59PM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +3:59PM ERR ClusterUpdater failed error="conn check failed (1/5)" +6:00PM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp: lookup 5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com: no such host" +6:00PM ERR ClusterUpdater failed error="conn check failed (2/5)" +6:00PM WRN namespace validation failed for: "eks-v15" error="user not authorized to list all namespaces" +6:00PM WRN namespace validation failed for: "eks-v15" error="user not authorized to list all namespaces" +9:20AM INF 🐶 K9s starting up... +9:20AM ERR config refine failed error="unable to activate context \"\": getcontext - invalid context specified: \"\"" +9:20AM ERR Fail to locate metrics-server error="Get \"http://localhost:8080/api\": dial tcp 127.0.0.1:8080: connect: connection refused" +9:20AM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp 127.0.0.1:8080: connect: connection refused" +9:20AM INF ✅ Kubernetes connectivity +9:20AM WRN Save failed. no active config detected +9:20AM ERR Fail to load global/context configuration error="unable to activate context \"\": getcontext - invalid context specified: \"\"\nGet \"http://localhost:8080/api\": dial tcp 127.0.0.1:8080: connect: connection refused\ncannot connect to context: \nk8s connection failed for context: " +9:20AM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +9:20AM ERR Load cluster resources - No API server connection +9:20AM ERR failed to list contexts error="no connection" +9:20AM WRN Unable to dial discovery API error="no connection to dial" +9:20AM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +9:20AM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +9:20AM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +9:20AM ERR Unable to assert active namespace. Using default error="getcontext - invalid context specified: \"\"" +9:20AM ERR can't connect to cluster error="Get \"http://localhost:8080/version?timeout=15s\": dial tcp 127.0.0.1:8080: connect: connection refused" +9:20AM ERR Load cluster resources - No API server connection +9:20AM WRN Unable to dial discovery API error="no connection to dial" +9:20AM WRN Plugins load failed: getcontext - invalid context specified: "" +9:20AM WRN Plugins load failed: getcontext - invalid context specified: "" +9:20AM WRN Plugins load failed: getcontext - invalid context specified: "" +10:39AM INF 🐶 K9s starting up... +10:39AM INF ✅ Kubernetes connectivity +10:39AM ERR Command failed error="exit status 1" +10:39AM ERR Exec failed "/usr/local/bin/kubectl exec --context cp-cluster-qa4-ca-maas-dev -it -n cp1-ns tp-cp-identity-provider-6c88b94948-rzjfr -c tp-cp-identity-provider -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 1 + error="exit status 1\n" +10:39AM ERR Shell exec failed: exit status 1 + error="exit status 1\n" +10:39AM WRN log-reader EOF error="stream closed EOF for cp1-ns/tp-cp-identity-provider-6c88b94948-rzjfr (tp-cp-identity-provider)" +10:42AM INF 🐶 K9s starting up... +10:42AM INF ✅ Kubernetes connectivity +11:25AM ERR can't connect to cluster error="Get \"https://AE7721ACEE7A013652E4FE7FC1008454.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +11:25AM ERR ClusterUpdater failed error="conn check failed (1/5)" +11:25AM ERR can't connect to cluster error="Get \"https://AE7721ACEE7A013652E4FE7FC1008454.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +11:25AM ERR ClusterUpdater failed error="conn check failed (1/5)" +11:25AM ERR Tail logs failed error="pods \"tp-cp-identity-provider-6c88b94948-rzjfr\" not found" +12:48PM INF 🐶 K9s starting up... +12:48PM INF ✅ Kubernetes connectivity +12:52PM INF 🐶 K9s starting up... +12:52PM INF ✅ Kubernetes connectivity +12:52PM WRN log-reader EOF error="stream closed EOF for vdp/anew-dm-ems-1 (anew-dm-ems)" +1:37PM ERR refresh failed for gvr: containers error="failed to locate pod \"vdp/anew-dm-ems-1\": pods \"anew-dm-ems-1\" not found" +1:37PM ERR Watcher failed for containers -- failed to locate pod "vdp/anew-dm-ems-1": pods "anew-dm-ems-1" not found error="failed to locate pod \"vdp/anew-dm-ems-1\": pods \"anew-dm-ems-1\" not found" +1:37PM WRN log-reader EOF error="stream closed EOF for vdp/bnew-ems-1 (bnew-ems)" +1:48PM ERR can't connect to cluster error="Get \"https://vc-msgdp-3.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +1:48PM ERR ClusterUpdater failed error="conn check failed (1/5)" +1:48PM WRN log-reader EOF error="stream closed EOF for vdp/bnew-ems-1 (bnew-ems)" +2:18PM ERR can't connect to cluster error="Get \"https://vc-msgdp-3.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +2:18PM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:18PM WRN  Dial Failed! error="Post \"https://vc-msgdp-3.kubeconfig.emsapp4.na.tibco.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": context deadline exceeded" +2:27PM INF 🐶 K9s starting up... +2:27PM INF ✅ Kubernetes connectivity +2:54PM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-15897" +4:03PM ERR can't connect to cluster error="Get \"https://vc-msgdp-3.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +4:03PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:34PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": read tcp 10.123.231.142:58186->10.97.130.64:443: read: operation timed out" +4:34PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:35PM ERR can't connect to cluster error="Get \"https://vc-msgdp-3.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)" +4:35PM ERR ClusterUpdater failed error="conn check failed (2/5)" +5:28PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: operation timed out" +5:28PM ERR ClusterUpdater failed error="conn check failed (2/5)" +5:36PM ERR can't connect to cluster error="Get \"https://vc-msgdp-3.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +5:36PM ERR ClusterUpdater failed error="conn check failed (3/5)" +5:36PM WRN namespace validation failed for: "vdp" error="user not authorized to list all namespaces" +5:36PM WRN namespace validation failed for: "vdp" error="user not authorized to list all namespaces" +5:36PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +5:36PM ERR ClusterUpdater failed error="conn check failed (3/5)" +5:36PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +5:36PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +8:50AM INF 🐶 K9s starting up... +8:50AM INF ✅ Kubernetes connectivity +9:32AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-10580" +9:35AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-7644" +10:32AM INF 🐶 K9s starting up... +10:32AM INF ✅ Kubernetes connectivity +10:51AM WRN log-reader EOF error="stream closed EOF for qa4-automation-dp/ems-test-ems-1 (ems-test-ems)" +12:32PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +12:32PM ERR ClusterUpdater failed error="conn check failed (1/5)" +1:50PM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +1:50PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:10PM WRN log-reader canceled error="stream canceled context canceled for qa4-automation-dp/ems-test-ems-1 (ems-test-ems)" +4:06PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +4:06PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:06PM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +4:06PM ERR ClusterUpdater failed error="conn check failed (1/5)" +5:00PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)" +5:00PM ERR ClusterUpdater failed error="conn check failed (2/5)" +5:41PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)" +5:41PM ERR ClusterUpdater failed error="conn check failed (3/5)" +5:41PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +5:41PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +5:58PM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +5:58PM ERR ClusterUpdater failed error="conn check failed (1/5)" +6:53PM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp: lookup 5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com: no such host" +6:53PM ERR ClusterUpdater failed error="conn check failed (2/5)" +6:53PM WRN namespace validation failed for: "qa4-automation-dp" error="user not authorized to list all namespaces" +6:53PM WRN namespace validation failed for: "qa4-automation-dp" error="user not authorized to list all namespaces" +9:21AM INF 🐶 K9s starting up... +9:21AM INF ✅ Kubernetes connectivity +10:09AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-28498-9bkk4\": pods \"emsuiactivation-28498-9bkk4\" not found" +10:09AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-28498-9bkk4\": pods \"emsuiactivation-28498-9bkk4\" not found" +10:09AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-28498-9bkk4\": pods \"emsuiactivation-28498-9bkk4\" not found" +10:09AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-28498-9bkk4\": pods \"emsuiactivation-28498-9bkk4\" not found" +10:09AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-28498-9bkk4\": pods \"emsuiactivation-28498-9bkk4\" not found" +10:09AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-28498-9bkk4\": pods \"emsuiactivation-28498-9bkk4\" not found" +10:09AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-28498-9bkk4\": pods \"emsuiactivation-28498-9bkk4\" not found" +10:09AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-28498-9bkk4\": pods \"emsuiactivation-28498-9bkk4\" not found" +10:10AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-28498-9bkk4\": pods \"emsuiactivation-28498-9bkk4\" not found" +10:10AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-28498-9bkk4\": pods \"emsuiactivation-28498-9bkk4\" not found" +10:10AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-28498-9bkk4\": pods \"emsuiactivation-28498-9bkk4\" not found" +10:10AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-28498-9bkk4\": pods \"emsuiactivation-28498-9bkk4\" not found" +10:10AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-28498-9bkk4\": pods \"emsuiactivation-28498-9bkk4\" not found" +10:11AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-28498-9bkk4\": pods \"emsuiactivation-28498-9bkk4\" not found" +10:11AM WRN reconciler exited error="failed to locate pod \"cp-automation-dp/emsuiactivation-28498-9bkk4\": pods \"emsuiactivation-28498-9bkk4\" not found" +10:11AM ERR failed to locate pod "cp-automation-dp/emsuiactivation-28498-9bkk4": pods "emsuiactivation-28498-9bkk4" not found +11:02AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +11:02AM ERR ClusterUpdater failed error="conn check failed (1/5)" +11:03AM ERR refresh failed for gvr: containers error="failed to locate pod \"cp-automation-dp/emsuiactivation-28498-9bkk4\": pods \"emsuiactivation-28498-9bkk4\" not found" +11:03AM ERR Watcher failed for containers -- failed to locate pod "cp-automation-dp/emsuiactivation-28498-9bkk4": pods "emsuiactivation-28498-9bkk4" not found error="failed to locate pod \"cp-automation-dp/emsuiactivation-28498-9bkk4\": pods \"emsuiactivation-28498-9bkk4\" not found" +4:12PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +4:12PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:12PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": read tcp 10.123.231.142:57748->10.97.130.64:443: read: operation timed out" +4:12PM ERR ClusterUpdater failed error="conn check failed (2/5)" +4:12PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +4:12PM ERR ClusterUpdater failed error="conn check failed (3/5)" +6:11PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": dial tcp 10.97.130.64:443: connect: network is unreachable" +6:11PM ERR ClusterUpdater failed error="conn check failed (4/5)" +6:11PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +6:11PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +8:47AM INF 🐶 K9s starting up... +8:47AM INF ✅ Kubernetes connectivity +8:47AM INF 🐶 K9s starting up... +8:47AM INF ✅ Kubernetes connectivity +10:22AM INF 🐶 K9s starting up... +10:22AM INF ✅ Kubernetes connectivity +9:07AM INF 🐶 K9s starting up... +9:07AM INF ✅ Kubernetes connectivity +9:08AM INF 🐶 K9s starting up... +9:08AM INF ✅ Kubernetes connectivity +9:10AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-23659" +9:15AM ERR Command failed error="exit status 130" +9:15AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-21939-hxspk -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +9:15AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +9:15AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-21939" +9:18AM ERR Command failed error="exit status 137" +9:18AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-26680-xgp9x -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +9:18AM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +9:18AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-26680" +10:24AM ERR Command failed error="exit status 130" +10:24AM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiactivation-29554-ptg87 -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 130 + error="exit status 130\n" +10:24AM ERR Shell exec failed: exit status 130 + error="exit status 130\n" +10:24AM WRN Deleted (0) portforward for "cp-automation-dp/emsuiactivation-29554" +10:25AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-490-uninstall-hpf0" +10:25AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-upgrade-uninstall-2uh4" +10:25AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-ui-auto-486-uninstall-71gj" +10:25AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-emsinit" +10:25AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-preinstall-cdf1" +10:25AM WRN Deleted (0) portforward for "cp-automation-dp/auto-ems-act-bht-uninstall-0dde" +10:25AM WRN Deleted (0) portforward for "cp-automation-dp/ems-1-uninstall-osa4" +11:38AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +11:38AM ERR ClusterUpdater failed error="conn check failed (1/5)" +11:46AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +11:46AM ERR ClusterUpdater failed error="conn check failed (1/5)" +11:49AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +11:49AM ERR ClusterUpdater failed error="conn check failed (1/5)" +12:09PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +12:09PM ERR ClusterUpdater failed error="conn check failed (1/5)" +12:13PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +12:13PM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:07PM ERR Command failed error="exit status 137" +2:07PM ERR Exec failed "/usr/local/bin/kubectl exec --context kubernetes-admin@kubernetes -it -n cp-automation-dp emsuiupgrade-1126-82dwj -c run-test -- sh -c command -v bash >/dev/null && exec bash || exec sh": exit status 137 + error="exit status 137\n" +2:07PM ERR Shell exec failed: exit status 137 + error="exit status 137\n" +2:25PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +2:25PM ERR ClusterUpdater failed error="conn check failed (1/5)" +2:28PM INF 🐶 K9s starting up... +2:28PM INF ✅ Kubernetes connectivity +4:02PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +4:02PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:02PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded - error from a previous attempt: http2: client connection lost" +4:02PM ERR ClusterUpdater failed error="conn check failed (2/5)" +4:04PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +4:04PM ERR ClusterUpdater failed error="conn check failed (1/5)" +4:07PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +4:07PM ERR ClusterUpdater failed error="conn check failed (2/5)" +4:59PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +4:59PM ERR ClusterUpdater failed error="conn check failed (3/5)" +4:59PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +4:59PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +9:52AM INF 🐶 K9s starting up... +9:52AM INF ✅ Kubernetes connectivity +9:53AM INF 🐶 K9s starting up... +9:53AM INF ✅ Kubernetes connectivity +10:27AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +10:27AM ERR ClusterUpdater failed error="conn check failed (1/5)" +11:33AM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +11:33AM ERR ClusterUpdater failed error="conn check failed (1/5)" +1:13PM INF 🐶 K9s starting up... +1:13PM INF ✅ Kubernetes connectivity +1:14PM INF 🐶 K9s starting up... +1:14PM INF ✅ Kubernetes connectivity +1:34PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +1:34PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:38PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +3:38PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:58PM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +3:58PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:58PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +3:58PM ERR ClusterUpdater failed error="conn check failed (1/5)" +3:59PM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +3:59PM ERR ClusterUpdater failed error="conn check failed (2/5)" +3:59PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded" +3:59PM ERR ClusterUpdater failed error="conn check failed (2/5)" +4:06PM ERR can't connect to cluster error="Get \"https://vc-automation.kubeconfig.emsapp4.na.tibco.com/version?timeout=15s\": context deadline exceeded - error from a previous attempt: http2: client connection lost" +4:06PM ERR ClusterUpdater failed error="conn check failed (3/5)" +4:06PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +4:06PM WRN namespace validation failed for: "cp-automation-dp" error="user not authorized to list all namespaces" +5:48PM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +5:48PM ERR ClusterUpdater failed error="conn check failed (1/5)" +5:56PM ERR can't connect to cluster error="client rate limiter Wait returned an error: context deadline exceeded - error from a previous attempt: http2: client connection lost" +5:56PM ERR ClusterUpdater failed error="conn check failed (1/5)" +6:02PM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +6:02PM ERR ClusterUpdater failed error="conn check failed (1/5)" +6:57PM WRN  Dial Failed! error="Post \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": read tcp 192.168.1.110:50322->44.253.79.146:443: read: connection reset by peer" +6:57PM ERR refresh failed for gvr: v1/pods error="Post \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/apis/authorization.k8s.io/v1/selfsubjectaccessreviews\": read tcp 192.168.1.110:50322->44.253.79.146:443: read: connection reset by peer" +6:57PM ERR Watcher failed for v1/pods -- [list] access denied on resource "elastic-system":"v1/pods" error="[list] access denied on resource \"elastic-system\":\"v1/pods\"" +7:11AM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +7:11AM ERR ClusterUpdater failed error="conn check failed (1/5)" +7:11AM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp: lookup 5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com: no such host" +7:11AM ERR ClusterUpdater failed error="conn check failed (2/5)" +8:34AM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded (Client.Timeout exceeded while awaiting headers)" +8:34AM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:34AM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": dial tcp: lookup 5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com: no such host - error from a previous attempt: http2: client connection lost" +8:34AM ERR ClusterUpdater failed error="conn check failed (2/5)" +8:42AM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": context deadline exceeded" +8:42AM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:49AM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +8:49AM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:51AM ERR can't connect to cluster error="Get \"https://5334B025F2A98035EA4E696FEE72E1D7.gr7.us-west-2.eks.amazonaws.com/version?timeout=15s\": net/http: request canceled (Client.Timeout exceeded while awaiting headers)" +8:51AM ERR ClusterUpdater failed error="conn check failed (1/5)" +8:52AM ERR no port-forward defined diff --git a/k9s/.config/k9s/plugins/debug-container.yaml b/k9s/.config/k9s/plugins/debug-container.yaml new file mode 100644 index 0000000..dd58e2e --- /dev/null +++ b/k9s/.config/k9s/plugins/debug-container.yaml @@ -0,0 +1,15 @@ +plugins: + #--- Create debug container for selected pod in current namespace + # See https://kubernetes.io/docs/tasks/debug/debug-application/debug-running-pod/#ephemeral-container + debug: + shortCut: Shift-D + description: Add debug container + dangerous: true + scopes: + - containers + command: bash + background: false + confirm: true + args: + - -c + - "kubectl debug -it --context $CONTEXT -n=$NAMESPACE $POD --target=$NAME --image=nicolaka/netshoot:v0.14 --profile=sysadmin --share-processes -- bash" diff --git a/k9s/.config/k9s/skins/onedark.yaml b/k9s/.config/k9s/skins/onedark.yaml new file mode 100644 index 0000000..8daa8eb --- /dev/null +++ b/k9s/.config/k9s/skins/onedark.yaml @@ -0,0 +1,108 @@ +foreground: &foreground "#abb2bf" +background: &background "transparent" +black: &black "#282c34" +blue: &blue "#61afef" +green: &green "#98c379" +grey: &grey "#abb2bf" +orange: &orange "#ffb86c" +purple: &purple "#c678dd" +red: &red "#e06370" +yellow: &yellow "#e5c07b" +yellow_bright: &yellow_bright "#d19a66" + +k9s: + body: + fgColor: *foreground + bgColor: *background + logoColor: *green + prompt: + fgColor: *foreground + bgColor: *background + suggestColor: *orange + info: + fgColor: *grey + sectionColor: *green + help: + fgColor: *foreground + bgColor: *background + keyColor: *yellow + numKeyColor: *blue + sectionColor: *purple + dialog: + fgColor: *black + bgColor: *background + buttonFgColor: *foreground + buttonBgColor: *green + buttonFocusFgColor: *black + buttonFocusBgColor: *blue + labelFgColor: *orange + fieldFgColor: *blue + frame: + border: + fgColor: *green + focusColor: *blue + menu: + fgColor: *grey + keyColor: *yellow + numKeyColor: *yellow + crumbs: + fgColor: *black + bgColor: *green + activeColor: *yellow + status: + newColor: *blue + modifyColor: *green + addColor: *grey + pendingColor: *orange + errorColor: *red + highlightColor: *yellow + killColor: *purple + completedColor: *grey + title: + fgColor: *blue + bgColor: *background + highlightColor: *purple + counterColor: *foreground + filterColor: *blue + views: + charts: + bgColor: *background + defaultDialColors: + - *green + - *red + defaultChartColors: + - *green + - *red + table: + fgColor: *yellow + bgColor: *background + cursorFgColor: *black + cursorBgColor: *blue + markColor: *yellow_bright + header: + fgColor: *grey + bgColor: *background + sorterColor: *orange + xray: + fgColor: *blue + bgColor: *background + cursorColor: *foreground + graphicColor: *yellow_bright + showIcons: false + yaml: + keyColor: *red + colonColor: *grey + valueColor: *grey + logs: + fgColor: *grey + bgColor: *background + indicator: + fgColor: *blue + bgColor: *background + toggleOnColor: *red + toggleOffColor: *grey + help: + fgColor: *grey + bgColor: *background + indicator: + fgColor: *blue diff --git a/k9s/.config/k9s/skins/onelight.yaml b/k9s/.config/k9s/skins/onelight.yaml new file mode 100644 index 0000000..2a79d41 --- /dev/null +++ b/k9s/.config/k9s/skins/onelight.yaml @@ -0,0 +1,113 @@ +# ----------------------------------------------------------------------------- +# OneLight Skin +# ----------------------------------------------------------------------------- + +# Styles... +foreground: &foreground "#2a2b33" +background: &background "#eeeeee" +black: &black "#000000" +blue: &blue "#3360c1" +green: &green "#40803f" +grey: &grey "#2a2b33" +orange: &orange "#ffb86c" +purple: &purple "#841e83" +red: &red "#b6443a" +yellow: &yellow "#795300" + +# Skin... +k9s: + body: + fgColor: *foreground + bgColor: *background + logoColor: *green + prompt: + fgColor: *foreground + bgColor: *background + suggestColor: *orange + info: + fgColor: *grey + sectionColor: *green + help: + fgColor: *foreground + bgColor: *background + keyColor: *yellow + numKeyColor: *blue + sectionColor: *purple + dialog: + fgColor: *black + bgColor: *background + buttonFgColor: *foreground + buttonBgColor: *green + buttonFocusFgColor: *black + buttonFocusBgColor: *blue + labelFgColor: *orange + fieldFgColor: *blue + frame: + border: + fgColor: *foreground + focusColor: *blue + menu: + fgColor: *grey + keyColor: *yellow + numKeyColor: *yellow + crumbs: + fgColor: *background + bgColor: *green + activeColor: *yellow + status: + newColor: *blue + modifyColor: *green + addColor: *grey + pendingColor: *orange + errorColor: *red + highlightColor: *yellow + killColor: *purple + completedColor: *grey + title: + fgColor: *blue + bgColor: *background + highlightColor: *purple + counterColor: *foreground + filterColor: *blue + views: + charts: + bgColor: *background + defaultDialColors: + - *green + - *red + defaultChartColors: + - *green + - *red + table: + fgColor: *yellow + bgColor: *background + cursorFgColor: *background + cursorBgColor: *blue + markColor: *yellow + header: + fgColor: *grey + bgColor: *background + sorterColor: *orange + xray: + fgColor: *blue + bgColor: *background + cursorColor: *foreground + graphicColor: *yellow + showIcons: false + yaml: + keyColor: *red + colonColor: *grey + valueColor: *grey + logs: + fgColor: *grey + bgColor: *background + indicator: + fgColor: *blue + bgColor: *background + toggleOnColor: *red + toggleOffColor: *grey + help: + fgColor: *grey + bgColor: *background + indicator: + fgColor: *blue diff --git a/k9s/.config/k9s/skins/transparent.yaml b/k9s/.config/k9s/skins/transparent.yaml new file mode 100644 index 0000000..9a103a8 --- /dev/null +++ b/k9s/.config/k9s/skins/transparent.yaml @@ -0,0 +1,44 @@ +# ----------------------------------------------------------------------------- +# Transparent skin +# Preserve your terminal session background color +# ----------------------------------------------------------------------------- + +# Skin... +k9s: + body: + bgColor: default + prompt: + bgColor: default + info: + sectionColor: default + dialog: + bgColor: default + labelFgColor: default + fieldFgColor: default + frame: + crumbs: + bgColor: default + title: + bgColor: default + counterColor: default + menu: + fgColor: default + views: + charts: + bgColor: default + table: + bgColor: default + header: + fgColor: default + bgColor: default + xray: + bgColor: default + logs: + bgColor: default + indicator: + bgColor: default + toggleOnColor: default + toggleOffColor: default + yaml: + colonColor: default + valueColor: default diff --git a/nvim-termux/.config/nvim/init.lua b/nvim-termux/.config/nvim/init.lua new file mode 100644 index 0000000..3006534 --- /dev/null +++ b/nvim-termux/.config/nvim/init.lua @@ -0,0 +1,4 @@ +-- Minimal Neovim config for Termux - Orgmode focused +require('plugins') +require('settings') +require('maps') diff --git a/nvim-termux/.config/nvim/lua/maps.lua b/nvim-termux/.config/nvim/lua/maps.lua new file mode 100644 index 0000000..e43c89f --- /dev/null +++ b/nvim-termux/.config/nvim/lua/maps.lua @@ -0,0 +1,62 @@ +vim.keymap.set('n', '', '5<', { desc = 'Resize left' }) +vim.keymap.set('n', '', '5+', { desc = 'Resize down' }) +vim.keymap.set('n', '', '5-', { desc = 'Resize up' }) +vim.keymap.set('n', '', '5>', { desc = 'Resize right' }) + +vim.api.nvim_set_keymap('n', 'ev', ':edit $MYVIMRC', { noremap = true }) + +-- Map Ctrl+Shift+h/j/k/l to resize panes +local builtin = require('telescope.builtin') + +-- nnn +vim.api.nvim_set_keymap('n', '', ':NnnPicker %:p:h', { noremap = true }) +vim.api.nvim_set_keymap('t', '', 'NnnPicker %:p:h', { noremap = true }) + +-- nvim-tree +vim.api.nvim_set_keymap('n', '', 'NvimTreeToggle ', { noremap = true }) +vim.api.nvim_set_keymap('n', 'b', ':NvimTreeResize ', { noremap = true }) + +-- Telescope +vim.keymap.set('n', '', builtin.find_files, {}) +vim.keymap.set('n', '', builtin.live_grep, {}) +vim.keymap.set('n', '', builtin.commands, {}) + +-- etc +vim.keymap.set('n', '?', ':WhichKey', {}) + +-- zen mode +vim.keymap.set('n', 'z', ':ZenMode', { silent = true }) + +-- Language shortcuts +vim.keymap.set('i', '', 'if err != nil {}', { noremap = true }) + +vim.cmd [[autocmd BufWritePre *.go lua vim.lsp.buf.format()]] + +-- Change Tabs +vim.keymap.set('n', '1', '1gt', {}) +vim.keymap.set('n', '2', '2gt', {}) +vim.keymap.set('n', '3', '3gt', {}) +vim.keymap.set('n', '4', '4gt', {}) +vim.keymap.set('n', '5', '5gt', {}) +vim.keymap.set('n', '6', '6gt', {}) +vim.keymap.set('n', '7', '7gt', {}) +vim.keymap.set('n', '8', '8gt', {}) +vim.keymap.set('n', '9', '9gt', {}) + +-- DAP +vim.api.nvim_set_keymap('n', 'd', ':DapViewToggle', { noremap = true }) +vim.api.nvim_set_keymap('n', 'w', ':DapViewWatch', { noremap = true }) +vim.keymap.set('n', '', function() require('dap').continue() end) +vim.keymap.set('n', '', function() require('dap').restart() end) +vim.keymap.set('n', '', function() require('dap').step_over() end) +vim.keymap.set('n', '', function() require('dap').step_into() end) +vim.keymap.set('n', '', function() require('dap').step_out() end) +vim.keymap.set('n', 'b', function() require('dap').toggle_breakpoint() end) + +-- Copilot +vim.api.nvim_set_keymap('n', '', ':CopilotChatToggle ', { noremap = true, silent = true }) +vim.api.nvim_set_keymap('i', '', 'copilot#Accept("")', { expr=true, noremap = true, silent = true }) +vim.keymap.set('i', '', '(copilot-accept-word)', { noremap=true, silent=true }) +vim.keymap.set("i", "", '(copilot-next)', { noremap=true, silent=true }) +vim.keymap.set("i", "", '(copilot-previous)', { noremap=true, silent=true }) +vim.g.copilot_no_tab_map = true diff --git a/nvim-termux/.config/nvim/lua/plugins.lua b/nvim-termux/.config/nvim/lua/plugins.lua new file mode 100644 index 0000000..863927a --- /dev/null +++ b/nvim-termux/.config/nvim/lua/plugins.lua @@ -0,0 +1,113 @@ +-- Bootstrap lazy.nvim +local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" +if not vim.loop.fs_stat(lazypath) then + vim.fn.system({ + "git", + "clone", + "--filter=blob:none", + "https://github.com/folke/lazy.nvim.git", + "--branch=stable", -- latest stable release + lazypath, + }) +end +vim.opt.rtp:prepend(lazypath) + +-- Install Plugins +require('lazy').setup({ + -- LSP + 'luukvbaal/nnn.nvim', + 'nvim-tree/nvim-tree.lua', + 'nvim-telescope/telescope.nvim', + 'nvim-telescope/telescope-ui-select.nvim', + { + "nvim-orgmode/orgmode", + dependencies = { + "lukas-reineke/headlines.nvim", + }, + event = 'VeryLazy', + ft = { 'org' }, + config = function() + require("orgmode").setup({ + org_startup_indented = true, -- ← this gives Emacs-style virtual indentation under headings (huge for legibility) + org_agenda_files = '~/org/**/*', + org_default_notes_file = '~/org/scratch.org', + org_startup_indented = true, + org_deadline_warning_days = 0, + org_agenda_custom_commands = { + w = { + description = "Work", + types = { + { + type = 'agenda', + org_agenda_tag_filter_preset = 'work' + } + } + }, + p = { + description = "Personal", + types = { + { + type = 'agenda', + org_agenda_tag_filter_preset = 'personal' + } + } + }, + } + }) + + require("headlines").setup({ + org = { + fat_headlines = false, -- ← no more huge blocks + headline_highlights = { "Headline1", "Headline2", "Headline3", "Headline4" }, + quote_string = "│", -- thinner vertical bar for quotes (optional but nicer) + quote_highlight = "Quote", + }, + }) + + end, + }, +}) + +-- Initialize Plugins +require('nnn').setup({ + picker = { + cmd = "nnn -C", + style = { border = "rounded" }, + fullscreen = false, + }, +}) +local function tree_on_attach(bufnr) + local api = require('nvim-tree.api') + api.config.mappings.default_on_attach(bufnr) + vim.keymap.del('n', '', { buffer = bufnr }) + vim.keymap.set("n", "", function() api.tree.resize({ relative = -5 }) end, { buffer = bufnr }) + vim.keymap.set("n", "", function() api.tree.resize({ relative = 5 }) end, { buffer = bufnr }) +end +require('nvim-tree').setup({ + on_attach = tree_on_attach, + view = { + side = "left", + }, + tab = { + sync = { + open = true, + close = true, + }, + }, +}) +require('telescope').setup({ + defaults = { + file_ignore_patterns = { + "%.git/", + "node_modules/", + "%.DS_Store", + }, + }, + pickers = { + find_files = { + hidden = true, + no_ignore = true, + }, + }, +}) +require("telescope").load_extension("ui-select") diff --git a/nvim-termux/.config/nvim/lua/settings.lua b/nvim-termux/.config/nvim/lua/settings.lua new file mode 100644 index 0000000..7cda546 --- /dev/null +++ b/nvim-termux/.config/nvim/lua/settings.lua @@ -0,0 +1,52 @@ +vim.o.mouse = "a" +vim.o.shiftwidth = 4 +vim.o.tabstop = 4 +vim.o.expandtab = true +vim.o.autoindent = true +vim.o.foldmethod = "indent" +vim.o.foldlevel = 99 +vim.o.wrap = false +vim.wo.number = true +vim.wo.relativenumber = true +vim.g.mapleader = ' ' +vim.o.splitright = true +-- vim.o.scrolloff = 999 +-- vim.o.clipboard="unnamedplus" + +vim.api.nvim_create_autocmd("FileType", { + pattern = "markdown", + command = "setlocal wrap linebreak", +}) +vim.api.nvim_create_autocmd("FileType", { + pattern = "org", + command = "setlocal shiftwidth=2 tabstop=2 expandtab", +}) + +-- Highlighting for orgmode files with highlight.nvim +vim.api.nvim_create_autocmd("ColorScheme", { + callback = function() + local cursorline = vim.api.nvim_get_hl(0, { name = "CursorLine" }) + local sep = vim.api.nvim_get_hl(0, { name = "WinSeparator" }).fg + or vim.api.nvim_get_hl(0, { name = "Comment" }).fg + + vim.api.nvim_set_hl(0, "Headline1", { bg = cursorline.bg, underline = true, sp = sep }) + vim.api.nvim_set_hl(0, "Headline2", { bg = cursorline.bg, underline = true, sp = sep }) + vim.api.nvim_set_hl(0, "Headline3", { bg = cursorline.bg, underline = true, sp = sep }) + vim.api.nvim_set_hl(0, "Headline4", { bg = cursorline.bg, underline = true, sp = sep }) + end, +}) + +-- Global colorscheme based on terminal colors +vim.cmd([[ + autocmd ColorScheme * highlight Statement cterm=bold ctermfg=5 + autocmd ColorScheme * highlight Keyword ctermfg=5 + autocmd ColorScheme * highlight Type ctermfg=6 + autocmd ColorScheme * highlight Function cterm=bold ctermfg=4 + autocmd ColorScheme * highlight Constant ctermfg=3 + autocmd ColorScheme * highlight String ctermfg=2 + " autocmd ColorScheme * highlight Comment cterm=italic ctermfg=lightgray + + syntax on + set notermguicolors + colorscheme default +]]) diff --git a/nvim/.config/nvim/init.lua b/nvim/.config/nvim/init.lua new file mode 100644 index 0000000..384de9d --- /dev/null +++ b/nvim/.config/nvim/init.lua @@ -0,0 +1,6 @@ +require('plugins') +require('lsp') +require('settings') +require('maps') +require('line') + diff --git a/nvim/.config/nvim/lazy-lock.json b/nvim/.config/nvim/lazy-lock.json new file mode 100644 index 0000000..af8e8cb --- /dev/null +++ b/nvim/.config/nvim/lazy-lock.json @@ -0,0 +1,30 @@ +{ + "CopilotChat.nvim": { "branch": "main", "commit": "743d6005fb412c85309d3f3aa45f18f3a2fb2098" }, + "LuaSnip": { "branch": "master", "commit": "1f4ad8bb72bdeb60975e98652636b991a9b7475d" }, + "cmp-nvim-lsp": { "branch": "main", "commit": "cbc7b02bb99fae35cb42f514762b89b5126651ef" }, + "copilot.vim": { "branch": "release", "commit": "a12fd5672110c8aa7e3c8419e28c96943ca179be" }, + "formatter.nvim": { "branch": "master", "commit": "b9d7f853da1197b83b8edb4cc4952f7ad3a42e41" }, + "gitsigns.nvim": { "branch": "main", "commit": "9f3c6dd7868bcc116e9c1c1929ce063b978fa519" }, + "headlines.nvim": { "branch": "master", "commit": "bf17c96a836ea27c0a7a2650ba385a7783ed322e" }, + "helm-ls.nvim": { "branch": "main", "commit": "f0b9a1723890971a6d84890b50dbf5f40974ea1b" }, + "lazy.nvim": { "branch": "main", "commit": "306a05526ada86a7b30af95c5cc81ffba93fef97" }, + "leetcode.nvim": { "branch": "master", "commit": "fdd3f91800b3983e27bc9fcfb99cfa7293d7f11a" }, + "mason.nvim": { "branch": "main", "commit": "44d1e90e1f66e077268191e3ee9d2ac97cc18e65" }, + "neodev.nvim": { "branch": "main", "commit": "46aa467dca16cf3dfe27098042402066d2ae242d" }, + "nnn.nvim": { "branch": "master", "commit": "efe690293eee87558f034a83ed96157e52639cdb" }, + "nui.nvim": { "branch": "main", "commit": "de740991c12411b663994b2860f1a4fd0937c130" }, + "nvim-autopairs": { "branch": "master", "commit": "59bce2eef357189c3305e25bc6dd2d138c1683f5" }, + "nvim-cmp": { "branch": "main", "commit": "da88697d7f45d16852c6b2769dc52387d1ddc45f" }, + "nvim-dap": { "branch": "master", "commit": "b516f20b487b0ac6a281e376dfac1d16b5040041" }, + "nvim-dap-go": { "branch": "main", "commit": "b4421153ead5d726603b02743ea40cf26a51ed5f" }, + "nvim-dap-ui": { "branch": "master", "commit": "cf91d5e2d07c72903d052f5207511bf7ecdb7122" }, + "nvim-lspconfig": { "branch": "master", "commit": "ead0f5f342d8d323441e7d4b88f0fc436a81ad5f" }, + "nvim-nio": { "branch": "master", "commit": "21f5324bfac14e22ba26553caf69ec76ae8a7662" }, + "nvim-tree.lua": { "branch": "master", "commit": "c8d8d515c29f0f0b1a352e0d75616f74f42fc03b" }, + "nvim-treesitter": { "branch": "master", "commit": "42fc28ba918343ebfd5565147a42a26580579482" }, + "orgmode": { "branch": "master", "commit": "f3ea61f6d71486c9062d40efe3c882050758e9b3" }, + "plenary.nvim": { "branch": "master", "commit": "b9fd5226c2f76c951fc8ed5923d85e4de065e509" }, + "telescope-ui-select.nvim": { "branch": "master", "commit": "6e51d7da30bd139a6950adf2a47fda6df9fa06d2" }, + "telescope.nvim": { "branch": "master", "commit": "5255aa27c422de944791318024167ad5d40aad20" }, + "zen-mode.nvim": { "branch": "main", "commit": "8564ce6d29ec7554eb9df578efa882d33b3c23a7" } +} diff --git a/nvim/.config/nvim/lua/line.lua b/nvim/.config/nvim/lua/line.lua new file mode 100644 index 0000000..884b2b2 --- /dev/null +++ b/nvim/.config/nvim/lua/line.lua @@ -0,0 +1,30 @@ +-- 1) define a global helper to fetch counts +function _G.lsp_diag_status() + local buf = 0 -- current buffer + local errs = #vim.diagnostic.get(buf, { severity = vim.diagnostic.severity.ERROR }) + local warns = #vim.diagnostic.get(buf, { severity = vim.diagnostic.severity.WARN }) + local infos = #vim.diagnostic.get(buf, { severity = vim.diagnostic.severity.INFO }) + local hints = #vim.diagnostic.get(buf, { severity = vim.diagnostic.severity.HINT }) + if errs + warns + infos + hints == 0 then + return "" -- no diagnostics → empty + end + -- only show non-zero categories + local parts = {} + if errs > 0 then table.insert(parts, "E:"..errs) end + if warns > 0 then table.insert(parts, "W:"..warns) end + if infos > 0 then table.insert(parts, "I:"..infos) end + if hints > 0 then table.insert(parts, "H:"..hints) end + return table.concat(parts, " ") +end + +-- 2) wire it into your statusline +-- %< … left-side, %= split, … right-side +vim.o.statusline = table.concat({ + "%<%f", -- file path, cut off if too long + "%m%r%h", -- modified/read-only/help flags + -- "%=", -- right align from here + "%{v:lua.lsp_diag_status()}", -- << your diagnostics << + "%=", + "%l:%c %p%%", -- line:col and percent through file +}, " ") + diff --git a/nvim/.config/nvim/lua/lsp.lua b/nvim/.config/nvim/lua/lsp.lua new file mode 100644 index 0000000..8215d86 --- /dev/null +++ b/nvim/.config/nvim/lua/lsp.lua @@ -0,0 +1,167 @@ +-- Add additional capabilities supported by nvim-cmp +local capabilities = vim.lsp.protocol.make_client_capabilities() +capabilities.textDocument.completion.completionItem.snippetSupport = true + +vim.lsp.config('*', { + capabilities = capabilities, +}) + +-- Enable some language servers with the additional completion capabilities +local servers = { 'lua_ls', 'pyright', 'gopls', 'clangd', 'helm_ls', 'bashls', 'angularls', 'djls' } +for _, lsp in ipairs(servers) do + vim.lsp.enable(lsp) +end + +-- HTML LSP +vim.lsp.config('html', { + filetypes = { "html", "templ", "javascript", "css" }, + capabilities = capabilities, + init_options = { + configurationSection = { "html", "css", "javascript" }, + embeddedLanguages = { css = true, javascript = true }, + provideFormatter = true + } +}) +vim.lsp.enable('html') + +-- CSS LSP +vim.lsp.config('cssls', { + filetypes = { "css", "scss", "less" }, + capabilities = capabilities, +}) +vim.lsp.enable('cssls') + +-- TypeScript LSP +vim.lsp.config('ts_ls', { + filetypes = { "typescript", "typescriptreact", "javascript", "javascriptreact", "html" }, + capabilities = capabilities, +}) +vim.lsp.enable('ts_ls') + +-- JSON LSP +vim.lsp.config('jsonls', { + capabilities = capabilities, +}) +vim.lsp.enable('jsonls') + +-- Emmet LSP +vim.lsp.config('emmet_ls', { + filetypes = { "html", "template", "javascript" }, +}) +vim.lsp.enable('emmet_ls') + +-- YAML LSP +vim.lsp.config('yamlls', { + capabilities = capabilities, + settings = { + yaml = { + schemas = { + kubernetes = "*.yaml", + }, + }, + } +}) +vim.lsp.enable('yamlls') + + +vim.api.nvim_create_autocmd({"BufRead", "BufNewFile"}, { + pattern = "*.jenkinsfile", + command = "set filetype=groovy" +}) + +-- luasnip setup +local luasnip = require('luasnip') + +-- nvim-cmp setup +local cmp = require('cmp') +cmp.setup { + snippet = { + expand = function(args) + luasnip.lsp_expand(args.body) + end, + }, + mapping = cmp.mapping.preset.insert({ + [''] = cmp.mapping.scroll_docs(-4), -- Up + [''] = cmp.mapping.scroll_docs(4), -- Down + -- C-b (back) C-f (forward) for snippet placeholder navigation. + [''] = cmp.mapping.complete(), + [''] = cmp.mapping.confirm { + behavior = cmp.ConfirmBehavior.Replace, + select = true, + }, + [''] = cmp.mapping(function(fallback) + if cmp.visible() then + cmp.select_next_item() + else + fallback() + end + end, { 'i', 's' }), + [''] = cmp.mapping(function(fallback) + if cmp.visible() then + cmp.select_prev_item() + else + fallback() + end + end, { 'i', 's' }), + }), + sources = { + { name = 'nvim_lsp' }, + { name = 'luasnip' }, + { name = 'orgmode' }, + }, + window = { + completion = { + style = "minimal", + border = "rounded", + winhighlight = 'Normal:Normal,FloatBorder:FloatBorder,CursorLine:PmenuSel,Search:None', + }, + documentation = { + style = "minimal", + border = "rounded", + winhighlight = 'Normal:Normal,FloatBorder:FloatBorder' + } + }, +} + +-- Bordered LSP UI +local float = { focusable = true, style = "minimal", border = "rounded", } +vim.lsp.handlers["textDocument/hover"] = vim.lsp.with(vim.lsp.handlers.hover, float) +vim.lsp.handlers["textDocument/signatureHelp"] = vim.lsp.with(vim.lsp.handlers.signature_help, float) + +-- Global mappings. +-- See `:help vim.diagnostic.*` for documentation on any of the below functions +vim.keymap.set('n', 'e', vim.diagnostic.open_float) +vim.keymap.set('n', '[d', vim.diagnostic.goto_prev) +vim.keymap.set('n', ']d', vim.diagnostic.goto_next) +vim.keymap.set('n', 'q', vim.diagnostic.setloclist) +vim.api.nvim_set_keymap('i', '', '', { noremap = true, silent = true }) + +-- Use LspAttach autocommand to only map the following keys +-- after the language server attaches to the current buffer +vim.api.nvim_create_autocmd('LspAttach', { + group = vim.api.nvim_create_augroup('UserLspConfig', {}), + callback = function(ev) + -- Enable completion triggered by + vim.bo[ev.buf].omnifunc = 'v:lua.vim.lsp.omnifunc' + + -- Buffer local mappings. + -- See `:help vim.lsp.*` for documentation on any of the below functions + local opts = { buffer = ev.buf } + vim.keymap.set('n', 'gD', vim.lsp.buf.declaration, opts) + vim.keymap.set('n', 'gd', vim.lsp.buf.definition, opts) + vim.keymap.set('n', 'K', vim.lsp.buf.hover, opts) + vim.keymap.set('n', 'gi', vim.lsp.buf.implementation, opts) + vim.keymap.set('n', 'wa', vim.lsp.buf.add_workspace_folder, opts) + vim.keymap.set('n', 'wr', vim.lsp.buf.remove_workspace_folder, opts) + vim.keymap.set('n', 'wl', function() + print(vim.inspect(vim.lsp.buf.list_workspace_folders())) + end, opts) + vim.keymap.set('n', 'D', vim.lsp.buf.type_definition, opts) + vim.keymap.set('n', 'rn', vim.lsp.buf.rename, opts) + vim.keymap.set({ 'n', 'v' }, 'ca', vim.lsp.buf.code_action, opts) + vim.keymap.set('n', 'gr', vim.lsp.buf.references, opts) + vim.keymap.set('n', 'f', function() + vim.lsp.buf.format { async = true } + end, opts) + end, +}) diff --git a/nvim/.config/nvim/lua/maps.lua b/nvim/.config/nvim/lua/maps.lua new file mode 100644 index 0000000..e43c89f --- /dev/null +++ b/nvim/.config/nvim/lua/maps.lua @@ -0,0 +1,62 @@ +vim.keymap.set('n', '', '5<', { desc = 'Resize left' }) +vim.keymap.set('n', '', '5+', { desc = 'Resize down' }) +vim.keymap.set('n', '', '5-', { desc = 'Resize up' }) +vim.keymap.set('n', '', '5>', { desc = 'Resize right' }) + +vim.api.nvim_set_keymap('n', 'ev', ':edit $MYVIMRC', { noremap = true }) + +-- Map Ctrl+Shift+h/j/k/l to resize panes +local builtin = require('telescope.builtin') + +-- nnn +vim.api.nvim_set_keymap('n', '', ':NnnPicker %:p:h', { noremap = true }) +vim.api.nvim_set_keymap('t', '', 'NnnPicker %:p:h', { noremap = true }) + +-- nvim-tree +vim.api.nvim_set_keymap('n', '', 'NvimTreeToggle ', { noremap = true }) +vim.api.nvim_set_keymap('n', 'b', ':NvimTreeResize ', { noremap = true }) + +-- Telescope +vim.keymap.set('n', '', builtin.find_files, {}) +vim.keymap.set('n', '', builtin.live_grep, {}) +vim.keymap.set('n', '', builtin.commands, {}) + +-- etc +vim.keymap.set('n', '?', ':WhichKey', {}) + +-- zen mode +vim.keymap.set('n', 'z', ':ZenMode', { silent = true }) + +-- Language shortcuts +vim.keymap.set('i', '', 'if err != nil {}', { noremap = true }) + +vim.cmd [[autocmd BufWritePre *.go lua vim.lsp.buf.format()]] + +-- Change Tabs +vim.keymap.set('n', '1', '1gt', {}) +vim.keymap.set('n', '2', '2gt', {}) +vim.keymap.set('n', '3', '3gt', {}) +vim.keymap.set('n', '4', '4gt', {}) +vim.keymap.set('n', '5', '5gt', {}) +vim.keymap.set('n', '6', '6gt', {}) +vim.keymap.set('n', '7', '7gt', {}) +vim.keymap.set('n', '8', '8gt', {}) +vim.keymap.set('n', '9', '9gt', {}) + +-- DAP +vim.api.nvim_set_keymap('n', 'd', ':DapViewToggle', { noremap = true }) +vim.api.nvim_set_keymap('n', 'w', ':DapViewWatch', { noremap = true }) +vim.keymap.set('n', '', function() require('dap').continue() end) +vim.keymap.set('n', '', function() require('dap').restart() end) +vim.keymap.set('n', '', function() require('dap').step_over() end) +vim.keymap.set('n', '', function() require('dap').step_into() end) +vim.keymap.set('n', '', function() require('dap').step_out() end) +vim.keymap.set('n', 'b', function() require('dap').toggle_breakpoint() end) + +-- Copilot +vim.api.nvim_set_keymap('n', '', ':CopilotChatToggle ', { noremap = true, silent = true }) +vim.api.nvim_set_keymap('i', '', 'copilot#Accept("")', { expr=true, noremap = true, silent = true }) +vim.keymap.set('i', '', '(copilot-accept-word)', { noremap=true, silent=true }) +vim.keymap.set("i", "", '(copilot-next)', { noremap=true, silent=true }) +vim.keymap.set("i", "", '(copilot-previous)', { noremap=true, silent=true }) +vim.g.copilot_no_tab_map = true diff --git a/nvim/.config/nvim/lua/plugins.lua b/nvim/.config/nvim/lua/plugins.lua new file mode 100644 index 0000000..34804d7 --- /dev/null +++ b/nvim/.config/nvim/lua/plugins.lua @@ -0,0 +1,208 @@ +-- Bootstrap lazy.nvim +local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" +if not vim.loop.fs_stat(lazypath) then + vim.fn.system({ + "git", + "clone", + "--filter=blob:none", + "https://github.com/folke/lazy.nvim.git", + "--branch=stable", -- latest stable release + lazypath, + }) +end +vim.opt.rtp:prepend(lazypath) + +-- Install Plugins +require('lazy').setup({ + -- Core + 'williamboman/mason.nvim', + -- LSP + 'neovim/nvim-lspconfig', + 'hrsh7th/nvim-cmp', + 'hrsh7th/cmp-nvim-lsp', + 'folke/neodev.nvim', + 'qvalentin/helm-ls.nvim', + { 'L3MON4D3/LuaSnip', version = 'v2.1.0' }, + -- DAP + 'mfussenegger/nvim-dap', + 'rcarriga/nvim-dap-ui', + 'nvim-neotest/nvim-nio', + 'leoluz/nvim-dap-go', + -- 'mfussenegger/nvim-dap-python', + -- Visual + 'nvim-treesitter/nvim-treesitter', + 'luukvbaal/nnn.nvim', + 'nvim-tree/nvim-tree.lua', + 'lewis6991/gitsigns.nvim', + 'mhartington/formatter.nvim', + { + 'folke/zen-mode.nvim', + opts = { + window = { + width = 0.5, + options = { + signcolumn = "no", + number = false, + relativenumber = false, + linebreak = true, + wrap = true, + } + }, + } + }, + { + "CopilotC-Nvim/CopilotChat.nvim", + dependencies = { + { "github/copilot.vim" }, -- or zbirenbaum/copilot.lua + }, + build = "make tiktoken", -- Only on MacOS or Linux + opts = { + window = { + layout = 'replace', + }, + mappings = { + accept_diff = false, -- disables the default “accept nearest diff” + }, + }, + }, + -- Utility + 'windwp/nvim-autopairs', + 'nvim-telescope/telescope.nvim', + 'nvim-telescope/telescope-ui-select.nvim', + 'nvim-lua/plenary.nvim', + -- 'folke/which-key.nvim', + { + "nvim-orgmode/orgmode", + dependencies = { + "lukas-reineke/headlines.nvim", + }, + event = 'VeryLazy', + ft = { 'org' }, + config = function() + require("orgmode").setup({ + org_startup_indented = true, -- ← this gives Emacs-style virtual indentation under headings (huge for legibility) + org_agenda_files = '~/org/**/*', + org_default_notes_file = '~/org/scratch.org', + org_startup_indented = true, + org_deadline_warning_days = 0, + org_agenda_custom_commands = { + w = { + description = "Work", + types = { + { + type = 'agenda', + org_agenda_tag_filter_preset = 'work' + } + } + }, + p = { + description = "Personal", + types = { + { + type = 'agenda', + org_agenda_tag_filter_preset = 'personal' + } + } + }, + } + }) + + require("headlines").setup({ + org = { + fat_headlines = false, -- ← no more huge blocks + headline_highlights = { "Headline1", "Headline2", "Headline3", "Headline4" }, + quote_string = "│", -- thinner vertical bar for quotes (optional but nicer) + quote_highlight = "Quote", + }, + }) + + end, + }, + -- Study + { + "kawre/leetcode.nvim", + dependencies = { + -- include a picker of your choice, see picker section for more details + "nvim-lua/plenary.nvim", + "MunifTanjim/nui.nvim", + }, + opts = { + lang = "python3" + }, + } +}) + +-- Initialize Plugins +require("mason").setup() +require('neodev').setup() +require('nvim-treesitter.configs').setup { + ensured_installed = { "go", "bash", "javascript", "html", "lua", "org" }, + sync_install = false, + auto_install = true, + highlight = { + enable = true, + additional_vim_regex_highlighting = true, + }, +} +require('nnn').setup({ + picker = { + cmd = "nnn -C", + style = { border = "rounded" }, + fullscreen = false, + }, +}) +local function tree_on_attach(bufnr) + local api = require('nvim-tree.api') + api.config.mappings.default_on_attach(bufnr) + vim.keymap.del('n', '', { buffer = bufnr }) + vim.keymap.set("n", "", function() api.tree.resize({ relative = -5 }) end, { buffer = bufnr }) + vim.keymap.set("n", "", function() api.tree.resize({ relative = 5 }) end, { buffer = bufnr }) +end +require('nvim-tree').setup({ + on_attach = tree_on_attach, + view = { + side = "left", + }, + tab = { + sync = { + open = true, + close = true, + }, + }, +}) +-- require('gitsigns').setup() +require('formatter').setup({ + filetype = { + python = { + function() + return { + exe = "black", + args = { "--quiet", "-" }, + stdin = true + } + end + } + } +}) +require('telescope').setup({ + defaults = { + file_ignore_patterns = { + "%.git/", + "node_modules/", + "%.DS_Store", + }, + }, + pickers = { + find_files = { + hidden = true, + no_ignore = true, + }, + }, +}) +require("telescope").load_extension("ui-select") +require('nvim-autopairs').setup() +-- require('which-key').setup() + +-- DAP Setup +-- require('dap-python').setup('~/venv/bin/python') +require('dap-go').setup() diff --git a/nvim/.config/nvim/lua/settings.lua b/nvim/.config/nvim/lua/settings.lua new file mode 100644 index 0000000..4b0fcf5 --- /dev/null +++ b/nvim/.config/nvim/lua/settings.lua @@ -0,0 +1,53 @@ +vim.o.mouse = "a" +vim.o.shiftwidth = 4 +vim.o.tabstop = 4 +vim.o.expandtab = true +vim.o.autoindent = true +vim.o.foldmethod = "indent" +vim.o.foldlevel = 99 +vim.o.wrap = false +vim.wo.number = true +vim.wo.relativenumber = true +vim.g.mapleader = ' ' +vim.o.splitright = true +-- vim.o.scrolloff = 999 +-- vim.o.clipboard="unnamedplus" + +vim.api.nvim_create_autocmd("FileType", { + pattern = "markdown", + command = "setlocal wrap linebreak", +}) +vim.api.nvim_create_autocmd("FileType", { + pattern = "org", + command = "setlocal shiftwidth=2 tabstop=2 expandtab", +}) + +-- Highlighting for orgmode files with highlight.nvim +vim.api.nvim_create_autocmd("ColorScheme", { + callback = function() + local cursorline = vim.api.nvim_get_hl(0, { name = "CursorLine" }) + local sep = vim.api.nvim_get_hl(0, { name = "WinSeparator" }).fg + or vim.api.nvim_get_hl(0, { name = "Comment" }).fg + + vim.api.nvim_set_hl(0, "Headline1", { bg = cursorline.bg, underline = true, sp = sep }) + vim.api.nvim_set_hl(0, "Headline2", { bg = cursorline.bg, underline = true, sp = sep }) + vim.api.nvim_set_hl(0, "Headline3", { bg = cursorline.bg, underline = true, sp = sep }) + vim.api.nvim_set_hl(0, "Headline4", { bg = cursorline.bg, underline = true, sp = sep }) + end, +}) + +-- Global colorscheme based on terminal colors +vim.cmd("Copilot disable") +vim.cmd([[ + autocmd ColorScheme * highlight Statement cterm=bold ctermfg=5 + autocmd ColorScheme * highlight Keyword ctermfg=5 + autocmd ColorScheme * highlight Type ctermfg=6 + autocmd ColorScheme * highlight Function cterm=bold ctermfg=4 + autocmd ColorScheme * highlight Constant ctermfg=3 + autocmd ColorScheme * highlight String ctermfg=2 + " autocmd ColorScheme * highlight Comment cterm=italic ctermfg=lightgray + + syntax on + set notermguicolors + colorscheme default +]]) diff --git a/skhd/.skhdrc b/skhd/.skhdrc new file mode 100644 index 0000000..34c065c --- /dev/null +++ b/skhd/.skhdrc @@ -0,0 +1,21 @@ +# fast focus desktop +alt - 1 : yabai -m space --focus 1 +alt - 2 : yabai -m space --focus 2 +alt - 3 : yabai -m space --focus 3 +alt - 4 : yabai -m space --focus 4 +alt - 5 : yabai -m space --focus 5 +alt - 6 : yabai -m space --focus 6 +alt - 7 : yabai -m space --focus 7 +alt - 8 : yabai -m space --focus 8 +alt - 9 : yabai -m space --focus 9 + +# send window to desktop and follow focus +shift + alt - 1 : yabai -m window --space 1; yabai -m space --focus +shift + alt - 2 : yabai -m window --space 2; yabai -m space --focus +shift + alt - 3 : yabai -m window --space 3; yabai -m space --focus +shift + alt - 4 : yabai -m window --space 4; yabai -m space --focus +shift + alt - 5 : yabai -m window --space 5; yabai -m space --focus +shift + alt - 6 : yabai -m window --space 6; yabai -m space --focus +shift + alt - 7 : yabai -m window --space 7; yabai -m space --focus +shift + alt - 8 : yabai -m window --space 8; yabai -m space --focus +shift + alt - 9 : yabai -m window --space 9; yabai -m space --focus diff --git a/termux/.termux/colors-light.properties b/termux/.termux/colors-light.properties new file mode 100644 index 0000000..277145a --- /dev/null +++ b/termux/.termux/colors-light.properties @@ -0,0 +1,32 @@ +# Termux colors - One Light theme (matches Ghostty) +# Generated from ghostty/.config/ghostty/themes/onelight + +# Normal colors +color0=#000000 +color1=#b6443a +color2=#40803f +color3=#795300 +color4=#3360c1 +color5=#841e83 +color6=#006996 +color7=#6d6d59 + +# Bright colors +color8=#000000 +color9=#b6443a +color10=#40803f +color11=#795300 +color12=#3360c1 +color13=#841e83 +color14=#006996 +color15=#ccccc0 + +# Background and foreground +background=#eeeeee +foreground=#2a2b33 + +# Cursor +cursor=#2a2b33 + +# Selection +selection=#ccccc0 diff --git a/termux/.termux/colors.properties b/termux/.termux/colors.properties new file mode 100644 index 0000000..bc62e9c --- /dev/null +++ b/termux/.termux/colors.properties @@ -0,0 +1,32 @@ +# Termux colors - One Dark theme (matches Ghostty) +# Generated from ghostty/.config/ghostty/themes/onedark + +# Normal colors +color0=#282c34 +color1=#e06c75 +color2=#98c379 +color3=#e5c07b +color4=#61afef +color5=#c678dd +color6=#56b6c2 +color7=#abb2bf + +# Bright colors +color8=#5f687b +color9=#e06c75 +color10=#98c379 +color11=#e5c07b +color12=#61afef +color13=#c678dd +color14=#56b6c2 +color15=#bfc5ce + +# Background and foreground +background=#111111 +foreground=#abb2bf + +# Cursor +cursor=#abb2bf + +# Selection +selection=#282c34 diff --git a/termux/.termux/termux.properties b/termux/.termux/termux.properties new file mode 100644 index 0000000..ab88fc4 --- /dev/null +++ b/termux/.termux/termux.properties @@ -0,0 +1,16 @@ +# Termux app settings +# Place at ~/.termux/termux.properties + +# Font +# Install: pkg install termux-api && termux-setup-storage +# Then place font in ~/.termux/font.ttf +# Using JetBrains Mono or SF Mono if available + +# Extra keys for easier typing on mobile +extra-keys = [['ESC','TAB','/','-','HOME','UP','END','PGUP'],['CTRL','ALT','KEYBOARD','LEFT','DOWN','RIGHT','PGDN','BACKSLASH']] + +# Bell +bell-character = ignore + +# Terminal transcript +# termux-transcript-mode = true diff --git a/termux/switch-theme.sh b/termux/switch-theme.sh new file mode 100755 index 0000000..99853f0 --- /dev/null +++ b/termux/switch-theme.sh @@ -0,0 +1,27 @@ +#!/bin/bash +# Switch between dark and light themes in Termux + +THEME=${1:-dark} +TERMUX_DIR="$HOME/.termux" + +case $THEME in + dark|onedark) + cp "$TERMUX_DIR/colors.properties" "$TERMUX_DIR/colors-current.properties.bak" 2>/dev/null + cp "$TERMUX_DIR/colors.properties" "$TERMUX_DIR/colors-current.properties" + echo "Switched to One Dark theme" + ;; + light|onelight) + cp "$TERMUX_DIR/colors.properties" "$TERMUX_DIR/colors-current.properties.bak" 2>/dev/null + cp "$TERMUX_DIR/colors-light.properties" "$TERMUX_DIR/colors.properties" + echo "Switched to One Light theme" + ;; + *) + echo "Usage: $0 {dark|light}" + echo " dark/onedark - Switch to One Dark theme" + echo " light/onelight - Switch to One Light theme" + exit 1 + ;; +esac + +# Reload Termux styling +termux-reload-settings 2>/dev/null || echo "Run 'termux-reload-settings' or restart Termux to apply changes" diff --git a/tmux/.tmux.conf b/tmux/.tmux.conf new file mode 100644 index 0000000..82ba93e --- /dev/null +++ b/tmux/.tmux.conf @@ -0,0 +1,63 @@ +# set-option -g default-command "exec /usr/local/bin/bash --login" +set-option -g status-style bg=default +bind -T copy-mode-vi Enter send-keys -X copy-pipe-and-cancel "pbcopy" + +# Enable mouse +set -g mouse on + +# Set the control character to Ctrl+Spacebar (instead of Ctrl+B) +set -g prefix C-space +unbind-key C-b +bind-key C-space send-prefix + +# Set new panes to open in current directory +bind c new-window -c "#{pane_current_path}" +bind '"' split-window -c "#{pane_current_path}" +bind % split-window -h -c "#{pane_current_path}" + +# Move panes with vim keys +bind h select-pane -L +bind j select-pane -D +bind k select-pane -U +bind l select-pane -R + +# Resize panes with vim keys +bind-key -r H resize-pane -L 5 +bind-key -r J resize-pane -D 5 +bind-key -r K resize-pane -U 5 +bind-key -r L resize-pane -R 5 + +# Pane movement between windows +bind-key m command-prompt -p "send pane to:" "join-pane -t :'%%'" + +# Disable escape time to remove delay in nvim +set -s escape-time 0 + +# True color support +set -g default-terminal "tmux-256color" +set-option -ga terminal-overrides ",*256col*:Tc" + +set -g status-style "fg=blue" +set -g window-status-current-style "fg=green" +set -g pane-active-border-style "fg=blue" + +setw -g mode-keys vi +bind -T copy-mode-vi 'v' send -X begin-selection +bind -T copy-mode-vi 'y' send -X copy-pipe-and-cancel "pbcopy" + +set -g status-right "" + +# Activate OFF mode +bind o \ + set prefix None \;\ + set key-table off \;\ + set status-style "fg=brightblack" \;\ + set window-status-current-style "fg=brightblack" + +# Disable OFF mode +bind -T off O \ + set -u prefix \;\ + set -u key-table \;\ + set -u status-style \;\ + set -u window-status-current-style +