上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 18 下一页
摘要: Kube-proxy主要负责Service的实现。 kube-proxy enables the Kubernetes service abstraction by maintaining network rules on the host and performing connection for 阅读全文
posted @ 2018-08-29 20:00 Vincen_shen 阅读(186) 评论(0) 推荐(0) 编辑
摘要: https://vbombarded.wordpress.com/2015/02/20/vrealize-orchestrator-extend-virtual-disk-workflow/ 阅读全文
posted @ 2018-08-29 15:20 Vincen_shen 阅读(581) 评论(0) 推荐(0) 编辑
摘要: 非常牛逼的技术,目前最新的版本支持众多的Feature HPA功能需要Heapster收集的CPU、内存等数据作为支撑 配置示例: 更多资料: https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/#sup 阅读全文
posted @ 2018-08-29 08:23 Vincen_shen 阅读(610) 评论(0) 推荐(0) 编辑
摘要: 报错类似的错误: Cannot execute request: ; java.security.cert.CertificateException: Certificates does not conform to algorithm constraintsCertificates does no 阅读全文
posted @ 2018-08-28 16:33 Vincen_shen 阅读(393) 评论(0) 推荐(0) 编辑
摘要: 配置参数: spec.containers[].resources.limits.cpu spec.containers[].resources.limits.memory spec.containers[].resources.requests.cpu spec.containers[].reso 阅读全文
posted @ 2018-08-28 08:14 Vincen_shen 阅读(218) 评论(0) 推荐(0) 编辑
摘要: yum install -y bash-completionsource /usr/share/bash-completion/bash_completionsource <(kubectl completion bash)echo "source <(kubectl completion bash 阅读全文
posted @ 2018-08-27 22:22 Vincen_shen 阅读(689) 评论(0) 推荐(0) 编辑
摘要: yaml下载地址: https://cloud.weave.works/k8s/scope.yaml?k8s-version=? 目前有以下几个版本: 修改yaml中的Service为NodePort - apiVersion: v1 kind: Service metadata: name: we 阅读全文
posted @ 2018-08-27 18:00 Vincen_shen 阅读(320) 评论(0) 推荐(0) 编辑
摘要: 部署一个简单的Nginx服务: deployment-yaml: apiVersion: apps/v1 kind: Deployment metadata: name: nginx-web spec: replicas: 3 selector: matchLabels: name: nginx-w 阅读全文
posted @ 2018-08-26 19:17 Vincen_shen 阅读(403) 评论(0) 推荐(0) 编辑
摘要: Go语言中的反射非常强大,可以对string, int, struct, func...进行反射,使用起来也比较简单。 示例1:反射函数 示例2:反射带参数的函数 示例3: 结构体反射,实现Struct to Json的转换 参考文章:https://studygolang.com/articles 阅读全文
posted @ 2018-08-25 17:35 Vincen_shen 阅读(180) 评论(0) 推荐(0) 编辑
摘要: https://github.com/gin-gonic/gin 阅读全文
posted @ 2018-08-19 23:08 Vincen_shen 阅读(188) 评论(0) 推荐(0) 编辑
摘要: Context通常被译作上下文,它是一个比较抽象的概念。在讨论链式调用技术时也经常会提到上下文。一般理解为程序单元的一个运行状态、现场、快照,而翻译中上下又很好地诠释了其本质,上下则是存在上下层的传递,上会把内容传递给下。在Go语言中,程序单元也就指的是Goroutine。 在Go语言中控制并发有两 阅读全文
posted @ 2018-08-18 11:48 Vincen_shen 阅读(343) 评论(0) 推荐(0) 编辑
摘要: 简单地说 Interface是一组Method的组合,可以通过Interface来定义对象的一组行为。如果某个对象实现了某个接口的所有方法,就表示它实现了该借口,无需显式地在该类型上添加接口说明。Interface是一个方法的集合,它里面没有其他类型变量,而且Method只用定义原型 不用实现 实现 阅读全文
posted @ 2018-08-11 16:47 Vincen_shen 阅读(293) 评论(0) 推荐(0) 编辑
摘要: redigo库来实现redis的操作:https://github.com/gomodule/redigo Redis常用操作 示例代码: package main import ( "github.com/gomodule/redigo/redis" "fmt" "time" ) func ini 阅读全文
posted @ 2018-08-11 15:40 Vincen_shen 阅读(479) 评论(0) 推荐(0) 编辑
摘要: sqlx is a library which provides a set of extensions on go's standard database/sql library. sqlx support some db: mysql, postgresql, oracle, sqlite .. 阅读全文
posted @ 2018-08-11 11:39 Vincen_shen 阅读(4113) 评论(0) 推荐(0) 编辑
摘要: Golang中MYSQL驱动 Mysql库https://github.com/go-sql-driver/mysql Go本身不提供具体数据库驱动,只提供驱动接口和管理。 各个数据库驱动需要第三方实现,并且注册到Go中的驱动管理中。 安装golang mysql drvier go get git 阅读全文
posted @ 2018-08-05 23:04 Vincen_shen 阅读(5032) 评论(0) 推荐(0) 编辑
摘要: Flag包用法 阅读全文
posted @ 2018-08-05 18:31 Vincen_shen 阅读(1366) 评论(0) 推荐(0) 编辑
摘要: 一、读取文件 普通版 ioutil版 bufio版 二、文件写入 普通版 ioutil版 bufio版 三、文件复制 ioCopy 1、普通版读取文件 package main import ( "path/filepath" "os" "log" "io" "fmt" ) func main() 阅读全文
posted @ 2018-08-04 13:29 Vincen_shen 阅读(310) 评论(0) 推荐(0) 编辑
摘要: time.NewTicker 实现计时器 阅读全文
posted @ 2018-07-28 22:16 Vincen_shen 阅读(508) 评论(0) 推荐(0) 编辑
摘要: 使用log模块示例代码: 阅读全文
posted @ 2018-07-28 17:49 Vincen_shen 阅读(2180) 评论(0) 推荐(0) 编辑
摘要: 示例代码: 示例代码: 阅读全文
posted @ 2018-07-28 16:09 Vincen_shen 阅读(751) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 18 下一页