03 2019 档案

windows openssh server 安装试用
摘要:使用Windows的可能会知道win10 的已经包好了openssh 服务,但是对于其他机器win 7 windows 2008 ,就需要其他的方法了 还好powershell 团队开发了支持windows 的opensshd 服务,试用了还不错,就是中文显示有问题(应该可以配置修改) 安装 下载安 阅读全文

posted @ 2019-03-29 15:49 荣锋亮 阅读(4478) 评论(0) 推荐(0) 编辑

terraform 配置github module source
摘要:terraform 支持多种module 的source 配置 以下是一个简单的使用github source的demo 测试项目 项目结构 ├── init.tpl ├── main.tf 代码说明 main.tf 主要配置module block module "users" { source 阅读全文

posted @ 2019-03-27 11:04 荣锋亮 阅读(623) 评论(0) 推荐(0) 编辑

Module Sources
摘要:转自:https://www.terraform.io/docs/modules/sources.html 主要记录module source 的格式 The source argument in a module block tells Terraform where to find the so 阅读全文

posted @ 2019-03-27 11:03 荣锋亮 阅读(309) 评论(0) 推荐(0) 编辑

创建一个简单的terraform module
摘要:terraform module可以实现代码的复用,同时方便分享,下面创建一个简单的基于localfile && template provider 的module module 项目 一个简单基于模板生成curl 配置module 项目结构 ├── README.md ├── init.tpl ├ 阅读全文

posted @ 2019-03-27 10:46 荣锋亮 阅读(1689) 评论(0) 推荐(0) 编辑

Writing and playing with custom Terraform Providers
摘要:转自:https://petersouter.xyz/writing-and-playing-with-custom-terraform-providers/ I’ve been digging deeper on Terraform. It’s something I’ve tinkered wi 阅读全文

posted @ 2019-03-26 18:33 荣锋亮 阅读(566) 评论(0) 推荐(0) 编辑

Write your own Terraform provider: Part 1
摘要:转自:https://container-solutions.com/write-terraform-provider-part-1/ This is the first part of a series of blog posts that explain how to write Terrafo 阅读全文

posted @ 2019-03-26 18:32 荣锋亮 阅读(326) 评论(0) 推荐(0) 编辑

Creating Modules
摘要:转自官方文档,主要说明如何创建模块 https://www.terraform.io/docs/modules/index.html A module is a container for multiple resources that are used together. Modules can 阅读全文

posted @ 2019-03-26 15:47 荣锋亮 阅读(201) 评论(0) 推荐(0) 编辑

terraform plugin 版本以及changlog 规范
摘要:文章来自官方文章,转自:https://www.terraform.io/docs/extend/best-practices/versioning.html 里面包含了版本命名的规范,以及changlog 的编写,对于实际的开发具有很大的价值 Given the breadth of availa 阅读全文

posted @ 2019-03-25 19:05 荣锋亮 阅读(850) 评论(0) 推荐(0) 编辑

Terraform Detecting Drift
摘要:转自:https://www.terraform.io/docs/extend/best-practices/detecting-drift.html 这篇文章主要说明了对于资源如何处理 read&&create,可以让我们了解如何进行状态管理 One of the core challenges 阅读全文

posted @ 2019-03-25 17:20 荣锋亮 阅读(393) 评论(0) 推荐(0) 编辑

使用terraform-provider-s3 操作minio
摘要:尽管默认官方提供了s3 的操作,但是对于开源minio 无法支持,更多的是aws 的s3,社区提供了一个通用 s3 操作的provider(基于minio 的sdk) 环境准备 docker-compose 文件 version: "3" services: s3: image: minio/min 阅读全文

posted @ 2019-03-25 14:51 荣锋亮 阅读(538) 评论(0) 推荐(0) 编辑

Terraform 自定义provider 开发
摘要:内容来自官方文档,主要是进行学习自定义provider 开发的流程 开发说明 我们需要开发的有provider 以及resource 对于resource 我们需要进行crud 的处理,同时还需要进行状态的 处理 项目初始化 dep 使用dep 进行包管理 dep init provider pac 阅读全文

posted @ 2019-03-25 11:28 荣锋亮 阅读(1716) 评论(0) 推荐(0) 编辑

Writing Custom Providers
摘要:转自:https://www.terraform.io/docs/extend/writing-custom-providers.html 很详细,做为一个记录 In Terraform, a Provider is the logical abstraction of an upstream AP 阅读全文

posted @ 2019-03-25 09:02 荣锋亮 阅读(501) 评论(0) 推荐(0) 编辑

terraform 几个方便的工具
摘要:几个方便的terraform 工具,方便了解terraform terraform-docs 方便的查看资源的信息(支持markdown,json 格式),对于ci/cd 很方便 项目地址 https://github.com/segmentio/terraform-docs 安装 for mac 阅读全文

posted @ 2019-03-19 14:01 荣锋亮 阅读(2716) 评论(0) 推荐(0) 编辑

几张简单的terraform flow 图——可以快速了解terraform的使用
摘要:以下是一个简单额terraform flow 我们快速的了解terraform 的使用,基于流程 参考图 参考架构 简单使用流程 说明 从上图我们可以看出terraform 的使用 tf 内容编写 定义变量,定义输出(可选的) 编写主要的任务(main.tf) 执行terraform 的操作(资源生 阅读全文

posted @ 2019-03-19 13:31 荣锋亮 阅读(1491) 评论(0) 推荐(0) 编辑

Stateful Kubernetes Applications Made Easier: PSO and FlashBlade
摘要:转自:https://medium.com/@joshua_robinson/stateful-kubernetes-applications-made-easier-pso-and-flashblade-aa3e2ebb0248 For stateful applications on Kuber 阅读全文

posted @ 2019-03-19 10:41 荣锋亮 阅读(382) 评论(0) 推荐(0) 编辑

使用k8s && minio 进行 postgres 数据库自动备份
摘要:通过k8s 的定时任务job,我们可以方便的进行定时任务应用的开发,通过minio s3 兼容的cloud native 存储 我们可以方便的通过http 请求进行数据文件的备份,以下简单演示下如何进行集成 环境准备 docker 镜像修改自 https://github.com/Remigius2 阅读全文

posted @ 2019-03-18 18:48 荣锋亮 阅读(2778) 评论(0) 推荐(0) 编辑

Understanding how uid and gid work in Docker containers
摘要:转自:https://medium.com/@mccode/understanding-how-uid-and-gid-work-in-docker-containers-c37a01d01cf Understanding how usernames, group names, user ids ( 阅读全文

posted @ 2019-03-16 20:05 荣锋亮 阅读(661) 评论(0) 推荐(0) 编辑

nightwatchjs 基于nodejs&& webdriver 协议的自动化测试&&持续集成框架
摘要:nightwatchjs 是基于nodejs&& webdriver 协议的自动化测试&&持续集成框架 参考架构 参考资料 http://nightwatchjs.org/gettingstarted/#browser-drivers-setup 阅读全文

posted @ 2019-03-16 10:58 荣锋亮 阅读(361) 评论(0) 推荐(0) 编辑

hasura graphql-engine graphql2chartjs 方便的graphql 转换chartjs 的类库
摘要:graphql2chartjs 是hasura graphql-engine 团队开源的方便graphql 转换为chartjs 的类库,我们可以方便的 用来进行ChartJS chart 开发 一张参考图 说明 我们可以集成subscription 可以快速的开发实时的图表,当前官方支持的图表还是 阅读全文

posted @ 2019-03-16 10:47 荣锋亮 阅读(418) 评论(0) 推荐(0) 编辑

nginx unit 1.8 支持基于java servlet 的开发模型
摘要:最近unit 1.8 发布了,有两个比较大的新特性,内部请求路由,以及java servlet 容器应用的开发 内部请求路由配置参考 { "routes": [ { "match": { "host": "example.com", "uri": "/admin/*" }, "action": { 阅读全文

posted @ 2019-03-08 14:45 荣锋亮 阅读(530) 评论(0) 推荐(0) 编辑

试用 openresty/lua-resty-shell
摘要:openresty/lua-resty-shell 是当前最新rc 版本内置的shell 功能,我们可以用来执行一个脚本,以及命令 还是比较方便的。 测试集成了一个oreilly电子书下载的功能 环境准备 docker-compose 文件 version: "3" services: nginx: 阅读全文

posted @ 2019-03-08 13:45 荣锋亮 阅读(1101) 评论(0) 推荐(0) 编辑

kubebapps 添加私有harbor 中的helm repo
摘要:kubebapps 支持添加私有的helm repo,基于http basic auth ,我们通过添加header 就可以了 备注 harbor helm 以及kubebapps 的搭建可以参考 https://www.cnblogs.com/rongfengliang/p/9974172.htm 阅读全文

posted @ 2019-03-06 10:51 荣锋亮 阅读(1289) 评论(0) 推荐(0) 编辑

CONTINUOUS MIGRATION
摘要:转自:https://pgloader.io/blog/continuous-migration/ After having been involved in many migration projects over the last 10 years, I decided to publish t 阅读全文

posted @ 2019-03-05 10:48 荣锋亮 阅读(273) 评论(0) 推荐(0) 编辑

How to scale Complex Event Processing (CEP)/ Streaming SQL Systems?
摘要:转自:https://iwringer.wordpress.com/2012/05/18/how-to-scale-complex-event-processing-cep-systems/ What is CEP? Complex event processing (CEP) systems qu 阅读全文

posted @ 2019-03-05 09:53 荣锋亮 阅读(549) 评论(0) 推荐(0) 编辑

Understanding Complex Event Processing (CEP)/ Streaming SQL Operators with WSO2 CEP (Siddhi)
摘要:转自:https://iwringer.wordpress.com/2013/08/07/understanding-complex-event-processing-cep-operators-with-wso2-cep-siddhi/ CEP model has many sensors. A 阅读全文

posted @ 2019-03-05 09:08 荣锋亮 阅读(781) 评论(0) 推荐(0) 编辑

Stream Processing 101: From SQL to Streaming SQL in 10 Minutes
摘要:转自:https://wso2.com/library/articles/2018/02/stream-processing-101-from-sql-to-streaming-sql-in-ten-minutes/ We have entered an era where competitive 阅读全文

posted @ 2019-03-05 09:08 荣锋亮 阅读(537) 评论(0) 推荐(0) 编辑

混沌工程原则
摘要:转自: https://github.com/wizardbyron/principlesofchaos_zh-cn 混沌工程是在分布式系统上进行实验的学科, 目的是建立对系统抵御生产环境中失控条件的能力以及信心。 大规模分布式软件系统的发展正在改变软件工程。作为一个行业,我们很快采用了提高开发灵活 阅读全文

posted @ 2019-03-04 18:17 荣锋亮 阅读(1411) 评论(0) 推荐(0) 编辑

Announcing HashiCorp Consul + Kubernetes
摘要:转自:https://www.hashicorp.com/blog/consul-plus-kubernetes We're excited to announce multiple features that deeply integrate HashiCorp Consul with Kuber 阅读全文

posted @ 2019-03-03 11:22 荣锋亮 阅读(402) 评论(0) 推荐(0) 编辑

katalog-sync: Reliable Integration of Consul and Kubernetes
摘要:转自:https://medium.com/wish-engineering/katalog-sync-reliable-integration-of-consul-and-kubernetes-ebe8aae0852a Why use consul with Kubernetes (k8s)? C 阅读全文

posted @ 2019-03-03 11:21 荣锋亮 阅读(556) 评论(0) 推荐(0) 编辑

pghoard 面向云存储的pg 备份&&恢复工具
摘要:pghoard 面向云存储的pg 备份&&恢复工具 包含的特性 自动定期basebackup 自动事务日志(WAL / Xlog软件)备份(使用pg_receivexlog, archive_command或与实验PG本地复制协议支持walreceiver) 云对象存储支持(AWS S3,Googl 阅读全文

posted @ 2019-03-02 08:32 荣锋亮 阅读(361) 评论(0) 推荐(0) 编辑

pgbench 安装试用
摘要:pgbench 是一个方便的pg 性能测试工具,以下是简单的测试试用 安装 安装pg yum install https://download.postgresql.org/pub/repos/yum/10/redhat/rhel-7-x86_64/pgdg-centos10-10-2.noarch 阅读全文

posted @ 2019-03-02 08:21 荣锋亮 阅读(4585) 评论(0) 推荐(1) 编辑

导航