kubectl get pods -n namespace kubectl describe pod pod_name -n namespace kubectl exec -it xxx -n namespace -- sh kubectl get pvc kubectl delete pvc xxx kubectl create secret generic xxx_secret --from-literal=DB_USER=*** --from-literal=DB_PASSWORD='***' -n namespace kubectl get sa(service Account) kubectl describe sa
special char
u”\u00b0” = °
C Pointer
script
1 2 3 4 5 6 7 8 9 10 11
int a[10]; int *pa; pa = &a[0]; pa == a; a[i] == *(a+i) pa[i] == *(pa+i) pa++ legal a++ illegal The meaning of ``adding 1 to a pointer,'' and by extension, all pointer arithmetic, is that pa+1 points to the next object