ksync 实际上实现了类似 docker docker run -v /foo:/bar 的功能,可以加速我们应用的开发&&运行

安装

curl https://vapor-ware.github.io/gimme-that/gimme.sh | bash

使用ksync 加速基于k8s 的应用开发-LMLPHP

基本使用

  • 初始化
ksync init
  • 启动
ksync watch &
  • 简单demo
kubectl apply -f https://vapor-ware.github.io/ksync/example/app/app.yaml
  • 创建同步设置
mkdir -p $(pwd)/ksync
ksync create --selector=app=app $(pwd)/ksync /code
  • 转发配置

kubectl get po --selector=app=app -o=custom-columns=:metadata.name --no-headers | \
xargs -IPOD kubectl port-forward POD 8080:80 &
  • 修改代码
  open ksync/server.py
  • 查看状态
ksync get

生命周期图

使用ksync 加速基于k8s 的应用开发-LMLPHP

参考资料

https://github.com/vapor-ware/ksync

 
 
 
 
05-07 15:42