相关文章
Generating Pods project failed
cocoapods pod install failed 因公司RN库做了调整,我们iOS项目在pod install后报出错误: An error occurred while processing the post-install hook of the Podfile.
No such file or directory rb_sysopen - ./Pods/Target Support File/yoga/yoga-m…
建站知识
2025/3/16 5:48:00
Kubernetes 删除Evicted Pods命令
安装jq
sudo yum install jq -y运行删除命令
kubectl get pods --all-namespaces -o json | jq .items[] | select(.status.reason!null) | select(.status.reason | contains("Evicted")) | "kubectl delete pods \(.metadata.name) -n \(.metadata.namespac…
建站知识
2025/3/16 6:01:55
update pods
Mini:showself_ios sixiangwei$ pod update --no-repo-update Update all pods Cloning spec repo 83-showself_pods_spec from git192.168.83.20:lifuqiang/showself_pods_spec.git Creating shallow clone of spec repo master from https://github.com/CocoaPods/Specs.git
建站知识
2025/2/22 10:17:58
k8s 入门 查看Pods/Nodes
查看Pods/Nodes
目标
了解Kubernetes Pods(容器组)了解Kubernetes Nodes(节点)排查故障
Kubernetes Pods
在 部署第一个应用程序中创建 Deployment 后,k8s创建了一个 Pod(容器组) 来放置应用…
建站知识
2025/3/1 7:13:10
pods报错修复方法
### Error RuntimeError - [!] Xcodeproj doesnt know about the following attributes {"inputFileListPaths">[], "outputFileListPaths">[]} for the PBXShellScriptBuildPhase isa. xcode与ruby,gem,pod版本需要做一些对应 echo [[ -s "$H…
建站知识
2025/2/27 4:26:12
`Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig`
pod install 警告 CocoaPods did not set the base configuration of your project because your project already has a custom config set. In order for CocoaPods integration to work at all, please either set the base configurations of the target Runner to Target …
建站知识
2024/12/8 13:52:52
kubernetes学习之-pods
什么是Pods Pods: 是kubernets可以创建和管理的最小计算单元;在docker概念中,pods类似于一组具有共享命名空间和文件系统卷的容器;
使用Pods kubernetes集群中使用pods主要有两种方式: 1、一个pod运行单一容器 2、一个pod运行多个…
建站知识
2024/10/29 22:19:06