kubectl的几条命令
kubectl的几条命令 kubectl get pods kubetctl get pods -o wide kubectl describe pod <pod_name> kubectl get node -o wide kubectl get service -o wide kubectl get namespace -o wide kubectl create -f f...
kubectl的几条命令 kubectl get pods kubetctl get pods -o wide kubectl describe pod <pod_name> kubectl get node -o wide kubectl get service -o wide kubectl get namespace -o wide kubectl create -f f...
def factorial(x): if x == 1: return 1 else: return x * factorial(x -1) factorial(3) 以上是使用递归计算阶乘的例子; def sum(x): if x == 1: return 1 else: return x + sum(x -1) sum(10) ...
This is my first blog using jekyll-now.