CLChang-Yi Leeincylee.hashnode.dev·Nov 5, 2023 · 1 min readBuild folly container in Ubuntu 22.04Environment Ubuntu 22.04 Installed Docker with snap I follow Meta folly Github document to install packages but continue see following message: permission denied: '/usr/lib/python3.10/ .. After search web I found solution from below link: https:/...00
CLChang-Yi Leeincylee.hashnode.dev·Oct 20, 2023 · 1 min readlibcurl got error code 56OS: Ubuntu 16.04 Today I am testing my program but continue to get the following error message curl: (56) gnutls recv error (-110) After Google the web I found following references: https://blog.csdn.net/weixin_36342174/article/details/132688887 I...00
CLChang-Yi Leeincylee.hashnode.dev·Jan 20, 2023 · 1 min readGet Kubernetes POD restart count with Python clientIt takes some time to search right keywords. #!/usr/bin/python3 import sys from kubernetes import client, config from kubernetes.client.api import core_v1_api from kubernetes.client import configuration def main(): config.load_kube_config("/ho...00
CLChang-Yi Leeincylee.hashnode.dev·Jan 20, 2023 · 2 min readExecute command on Kubernetes POD(multiple containers) using Python client libraryTake note of this problem that takes two hours to Google the web. Environment setup I run on Ubuntu 22.04, so I assume you also run on Linux. # install Kubernetes Python client library pip3 install kubernetes Check Github for how to execute commands...00