ktg0210.hashnode.devdocker desktop alternativeoutline Running docker desktop on local mac machine, it can be harsh and too heavy for local machine. alternative “obrstack” can be alternative of docker desktop on machttps://orbstack.dev/Oct 23, 2024·1 min read
ktg0210.hashnode.devChecking the initial password of ArgoCD installed on k8soutline 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 --decodeOct 18, 2024·1 min read
ktg0210.hashnode.devChecking EKS cluster add-ons version compatibilities and versionoutline 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-...Oct 18, 2024·1 min read
ktg0210.hashnode.devHow to check container runtime of k8s worker nodeoutline 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...Oct 18, 2024·1 min read
ktg0210.hashnode.devAmazon EKS (k8s) namespace cannot be deleted (stuck terminating status)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...Oct 18, 2024·2 min read