上一页 1 ··· 92 93 94 95 96 97 98 99 100 ··· 133 下一页

2019年3月27日

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 荣锋亮 阅读(322) 评论(0) 推荐(0)

创建一个简单的terraform module

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

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

2019年3月26日

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 荣锋亮 阅读(572) 评论(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 荣锋亮 阅读(334) 评论(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 荣锋亮 阅读(211) 评论(0) 推荐(0)

2019年3月25日

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 荣锋亮 阅读(863) 评论(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 荣锋亮 阅读(409) 评论(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 荣锋亮 阅读(578) 评论(0) 推荐(0)

Terraform 自定义provider 开发

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

posted @ 2019-03-25 11:28 荣锋亮 阅读(1757) 评论(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 荣锋亮 阅读(514) 评论(0) 推荐(0)

2019年3月19日

terraform 几个方便的工具

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

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

几张简单的terraform flow 图——可以快速了解terraform的使用

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

posted @ 2019-03-19 13:31 荣锋亮 阅读(1543) 评论(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 荣锋亮 阅读(388) 评论(0) 推荐(0)

2019年3月18日

使用k8s && minio 进行 postgres 数据库自动备份

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

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

2019年3月16日

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 荣锋亮 阅读(691) 评论(0) 推荐(0)

nightwatchjs 基于nodejs&& webdriver 协议的自动化测试&&持续集成框架

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

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

hasura graphql-engine graphql2chartjs 方便的graphql 转换chartjs 的类库

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

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

2019年3月8日

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 荣锋亮 阅读(543) 评论(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 荣锋亮 阅读(1135) 评论(0) 推荐(0)

2019年3月6日

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 荣锋亮 阅读(1302) 评论(0) 推荐(0)

2019年3月5日

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 荣锋亮 阅读(287) 评论(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 荣锋亮 阅读(559) 评论(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 荣锋亮 阅读(792) 评论(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 荣锋亮 阅读(556) 评论(0) 推荐(0)

2019年3月4日

混沌工程原则

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

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

2019年3月3日

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 荣锋亮 阅读(410) 评论(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 荣锋亮 阅读(575) 评论(0) 推荐(0)

2019年3月2日

pghoard 面向云存储的pg 备份&&恢复工具

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

posted @ 2019-03-02 08:32 荣锋亮 阅读(367) 评论(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 荣锋亮 阅读(4719) 评论(0) 推荐(1)

2019年2月28日

ClusterControl docker 环境搭建

摘要: ClusterControl 是一款比较强大的数据库管理平台,包含了丰富的数据库管理功能。 我们可以用来方便的进行数据管理 测试使用docker-compose 管理 环境准备 docker-compose 文件 version: "3" services: clustercontrol: imag 阅读全文

posted @ 2019-02-28 11:24 荣锋亮 阅读(1280) 评论(0) 推荐(0)

验证远程主机SSH指纹

摘要: 转自:https://marskid.net/2018/02/05/how-to-verify-ssh-public-key-fingerprint/ 使用SSH进行远程连接新的主机的时候,经常会看到一个提示: $ ssh 127.0.0.1 The authenticity of host '12 阅读全文

posted @ 2019-02-28 09:01 荣锋亮 阅读(9321) 评论(0) 推荐(4)

2019年2月27日

GitLab Shell如何通过SSH工作

摘要: 转自:https://wayjam.me/post/how-gitlab-shell-works-with-ssh.md GitLab访问Git仓库 首先回顾GitLab的Git仓库四种访问方式: git pull over http -> gitlab-rails (Authorization) 阅读全文

posted @ 2019-02-27 22:37 荣锋亮 阅读(924) 评论(0) 推荐(0)

Top PG Clustering HA Solutions for PostgreSQL

摘要: 转自:https://severalnines.com/blog/top-pg-clustering-ha-solutions-postgresql If your system relies on PostgreSQL databases and you are looking for clust 阅读全文

posted @ 2019-02-27 18:40 荣锋亮 阅读(700) 评论(0) 推荐(0)

ClusterControl 强大免费数据管理工具

摘要: 几张参考图 galera 集群管理 多种数据库管理 组件架构 参考资料 https://severalnines.com/docs/intro.html 阅读全文

posted @ 2019-02-27 09:45 荣锋亮 阅读(746) 评论(0) 推荐(0)

2019年2月26日

haproxy httpcheck with basic auth

摘要: 一个简单的需求,就是需要在 haproxy 的 httpcheck 使用 basic 认证,解决方法 base64 编码username 以及密码 echo -n "my_username:my_password" | base64 echo -n "my_username:my_password" 阅读全文

posted @ 2019-02-26 22:25 荣锋亮 阅读(769) 评论(0) 推荐(0)

2019年2月25日

architecture and business process modelling

摘要: bpmn 架构相关的文章: 转自:https://www.heflo.com/definitions/architecture-business-process-modeling/ BPMN Modeling Tool. Process Modeling (Blog Category). Proce 阅读全文

posted @ 2019-02-25 12:44 荣锋亮 阅读(284) 评论(0) 推荐(0)

10 BPMN PDF books, articles and brochures

摘要: 转自:https://www.heflo.com/blog/bpm/bpmn-pdf/ If you are looking for more information about BPMN (Business Process Model and Notation) in handouts, or e 阅读全文

posted @ 2019-02-25 10:23 荣锋亮 阅读(669) 评论(0) 推荐(0)

chaostoolkit 混沌工程工具集

摘要: chaostoolkit 目标是提供一个免费,开放,社区驱动的工具集以及api 以下为一张参考图 一些已经的扩展 基础设施/平台 Fault Injections: [chaostoolkit-kubernetes][chaoskube]: Kubernetes activities [chaost 阅读全文

posted @ 2019-02-25 09:08 荣锋亮 阅读(2464) 评论(0) 推荐(0)

2019年2月24日

Optimizing Docker Images for Rust Projects

摘要: 转自:http://whitfin.io/speeding-up-rust-docker-builds/ This post will be the first of several addressing Docker image optimizations for different projec 阅读全文

posted @ 2019-02-24 14:01 荣锋亮 阅读(320) 评论(0) 推荐(0)

bloom-server 基于 rust 编写的 rest api cache 中间件

摘要: bloom-server 基于 rust 编写的 rest api cache 中间件,他位于lb 与api worker 之间,使用redis 作为缓存内容存储, 我们需要做的就是配置proxy,同时他使用基于share 的概念,进行cache 的分布存储,包含了请求端口(proxy,访问数据) 阅读全文

posted @ 2019-02-24 10:38 荣锋亮 阅读(1190) 评论(0) 推荐(0)

上一页 1 ··· 92 93 94 95 96 97 98 99 100 ··· 133 下一页

导航