Nothing here yet.
Nothing here yet.
Oct 18, 2024 · 1 min read · outline The initial password for ArgoCD installed on k8s is generated randomly. how-to kubectl -n <argocd-namespace> get secret argocd-initial-admin-secret -o jsonpath="{.data.password}" | base64 --decode
Join discussion
Oct 18, 2024 · 1 min read · outline Checking the available add-on list and version according to eks cluster version and add-on version script # List of specific add-on versions supported by a specific EKS Version aws eks describe-addon-versions --kubernetes-version <eks-...
Join discussion
Oct 18, 2024 · 1 min read · outline How to check container runtime of k8s worker node using kubectl command script kubectl get nodes -o jsonpath='{range .items[*]}{.metadata.name}{"\t"}{.status.nodeInfo.containerRuntimeVersion}{"\n"}{end}' reference https://kubernet...
Join discussion
Oct 18, 2024 · 2 min read · outline When you are trying to delete namespace of k8s, the status may become stuck in terminating, occasionally because of “finalizer” of k8s. script #!/bin/bash # Define the stuck namespace as a variable NAMESPACE=$1 # Check if the namespa...
Join discussion