git 操作手册
成新tag后,再删除旧的tag) ★git远程协作开发 远程协作的基本流程: ① 管理员在创建一个空的远程仓库(比如在gitlab上创建一个空的项目) ② 管理员创建一个待推送的本地仓库 ③ 管理员关联本地仓库与远程仓库 ④ 管理员在本地仓库中编辑代码,提交代码 ⑤ 管理员推送本地仓库代码到远程仓库 ⑥ 管理员邀请协作成员 ⑦ 成员克隆远程仓库 ⑧ 成员做出修改 ⑨ 成员推送自己的修改 -v #查看当前仓库关联的远程代码库的URL # git remote rm rmtRepo #删除远程仓库 ★协作成员操作⑦到⑨,详见下一小节:克隆远程仓库 ★克隆远程仓库 # git clone h�ps://gitlab.cof-lee.com/cof/pro-1.git #克隆远程仓库到本地,默认 使用TortoiseGit时,要求提前安装好git工具 ★部署gitlab仓库 gitlab是一个基于git实现的在线代码仓库软件,提供web可视化管理界面,通常 用于企业团队内部协作开发 ★安装gitlab-ce 部署gitlab-ce要求服务器内存>=4GB,本例使用操作系统为 Rocky Linux 8.8, gitlab-ce版本16.5.0 ★首先gitlab服务器要安装ntp时间服务0 码力 | 35 页 | 1.69 MB | 1 年前3python3学习手册
用于创建图形用户界面应用程序 Tkinter库具有以下优点: 是Python的标准GUI库,无需安装第三方库即可使用 提供了丰富的组件和布局管理器,能够满足大多数应用程序的需求 具有良好的跨平台性,能够在Windows、macOS和Linux等操作系统上 运行 在python 2.x中,模块名为Tkinter(首字母大写) 在python 3.x中,模块名为tkinter(首字母小写) tree_1_2 = tree_root.insert(tree_1, 2, "any", text="any") tree_2_0 = tree_root.insert(tree_2, 0, "api", text="api") tree_2_1 = tree_root.insert(tree_2, 1, "auth", text="auth") tree_2_2 = tree_root.insert(tree_20 码力 | 213 页 | 3.53 MB | 1 年前3postgresql操作手册
如果想安装其他版本,可到官网查询安装方法 h�ps://www.postgresql.org/download/linux/redhat/ 本文档选择PG-13版本作为讲解,使用el8系列的系统,x86_64平台 # yum install -y h�ps://download.postgresql.org/pub/repos/yum/reporpms/EL-8-x86_64/pgdg-redhat-0 码力 | 17 页 | 445.84 KB | 1 年前3k8s操作手册 2.3
kubeadm init --kubernetes- version=v1.19.4 \ --apiserver-adver�se- address=10.99.1.51 \ # api server地址 --pod-network-cidr=10.244.0.0/16 \ # pod容器网段 --service-cidr=10.7.0.0/16 \ # service网段,即cluster kubeadm init --kubernetes- version=v1.28.2 \ --apiserver-adver�se- address=10.99.1.51 \ # api server地址 --pod-network-cidr=10.244.0.0/16 \ # pod容器网段 --service-cidr=10.7.0.0/16 \ # service网段,即cluster 高可用集群拓扑图: ★先配置HA高可用的反向代理 本例中vip为10.99.1.54(三台master ip为10.99.1.51~53)使用haproxy做反向代理 frontend k8s_api_tcp_6443 bind *:6443 mode tcp default_backend my_k8s_cluster_6443 backend my_k8s_cluster_64430 码力 | 126 页 | 4.33 MB | 1 年前3The DevOps Handbook
that could become an error and will likely trigger an alert 4. Error – error conditions such as API failures, internal issues 5. Fatal – forces a termination iv. Examples of potentially significant Use telemetry to measure outcomes iv. Etsy open-sourced their experimentation framework – Feature API e. INTEGRATE A/B TESTING INTO OUR FEATURE PLANNING i. Product owners should consider each feature0 码力 | 8 页 | 24.02 KB | 5 月前3The DevOps Handbook
suite becomes the living documentation of the system specification and represent working examples of API use e. DESIGN FOR OPERATIONS THROUGH CODIFIED NON-FUNCTIONAL REQUIREMENTS i. Designing for fast changes through pair programming or code review 3. Instrument the repository to detect suspicious code (API calls from certain types of test code) 4. Ensure every CI process is in an isolated container 50 码力 | 9 页 | 25.13 KB | 5 月前3The DevOps Handbook
Coined by Martin Fowler in 2004 ii. Strangler Application 1. Put existing functionality behind an API 2. New functionality implemented in new services with new architecture 3. Make calls to old system0 码力 | 8 页 | 23.08 KB | 5 月前3
共 7 条
- 1