上一页 1 ··· 82 83 84 85 86 87 88 89 90 ··· 122 下一页

2019年3月25日

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

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

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

posted @ 2019-03-19 13:31 荣锋亮 阅读(1482) 评论(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 荣锋亮 阅读(378) 评论(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 荣锋亮 阅读(2746) 评论(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 荣锋亮 阅读(652) 评论(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) 编辑

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 荣锋亮 阅读(527) 评论(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 荣锋亮 阅读(1093) 评论(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 荣锋亮 阅读(1282) 评论(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 荣锋亮 阅读(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 荣锋亮 阅读(547) 评论(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 荣锋亮 阅读(780) 评论(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) 编辑

2019年3月4日

混沌工程原则

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

posted @ 2019-03-04 18:17 荣锋亮 阅读(1404) 评论(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 荣锋亮 阅读(400) 评论(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 荣锋亮 阅读(549) 评论(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 荣锋亮 阅读(360) 评论(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 荣锋亮 阅读(4531) 评论(0) 推荐(1) 编辑

2019年2月28日

ClusterControl docker 环境搭建

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

posted @ 2019-02-28 11:24 荣锋亮 阅读(1225) 评论(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 荣锋亮 阅读(8206) 评论(0) 推荐(3) 编辑

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

ClusterControl 强大免费数据管理工具

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

posted @ 2019-02-27 09:45 荣锋亮 阅读(718) 评论(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 荣锋亮 阅读(736) 评论(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 荣锋亮 阅读(276) 评论(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 荣锋亮 阅读(639) 评论(0) 推荐(0) 编辑

chaostoolkit 混沌工程工具集

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

posted @ 2019-02-25 09:08 荣锋亮 阅读(2385) 评论(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 荣锋亮 阅读(298) 评论(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 荣锋亮 阅读(1165) 评论(0) 推荐(0) 编辑

2019年2月22日

svelte 构建快速web 应用的工具

摘要: svelte 和angular vue reat 类似,都是方便快速的创建用户界面,最大不同的地方是svelte 转换你的app 是在构建时,而不是运行时,所以好处就是不用花费太多的操作在,框架的 抽象上 以下为一个简单的例子,代码来自官方文档: 注意使用了svelte 的template 安装de 阅读全文

posted @ 2019-02-22 14:18 荣锋亮 阅读(929) 评论(0) 推荐(0) 编辑

2019年2月21日

Using Elixir Dynamic Supervisors

摘要: 转自: https://blog.smartlogic.io/elixir-dynamic-supervisors/ I have been working on my side project Grapevine, a community site for text based multiplay 阅读全文

posted @ 2019-02-21 16:18 荣锋亮 阅读(442) 评论(0) 推荐(0) 编辑

2019年2月18日

goreleaser 方便的go 二进制包分发工具

摘要: goreleaser 可以帮助我们进行go 二进制包的快速,简单分发,我们可以用来创建一个github release 以及发布到homwbrew formula 。 安装 mac 系统,实际根据自己的系统选择,我使用brew 安装 brew install goreleaser 使用 创建go m 阅读全文

posted @ 2019-02-18 16:38 荣锋亮 阅读(3537) 评论(0) 推荐(0) 编辑

dive 方便的观察容器各层信息的工具

摘要: dive 是一个方便的观察容器各层信息的工具,同时也集成了容器构建命令,方便我们在构建容器 镜像的同时查询镜像各层的变动信息 安装 mac 系统,可以按照自己的系统选择安装方式 wget https://github.com/wagoodman/dive/releases/download/v0.6 阅读全文

posted @ 2019-02-18 15:49 荣锋亮 阅读(593) 评论(0) 推荐(0) 编辑

2019年2月16日

Running Elixir in Docker Containers

摘要: 转自:https://www.poeticoding.com/running-elixir-in-docker-containers/ One of the wonderful things about Docker Containers is that you can easily freeze 阅读全文

posted @ 2019-02-16 20:54 荣锋亮 阅读(622) 评论(0) 推荐(0) 编辑

Distributed Phoenix Chat using Redis PubSub

摘要: 转自:https://www.poeticoding.com/distributed-phoenix-chat-using-redis-pubsub/ In the previous article, Create a High-Availability Kubernetes Cluster on 阅读全文

posted @ 2019-02-16 19:20 荣锋亮 阅读(524) 评论(0) 推荐(0) 编辑

Connecting Elixir Nodes with libcluster, locally and on Kubernetes

摘要: 转自:https://www.poeticoding.com/connecting-elixir-nodes-with-libcluster-locally-and-on-kubernetes/ Transcript In the last few articles we saw how to ma 阅读全文

posted @ 2019-02-16 19:20 荣锋亮 阅读(471) 评论(0) 推荐(0) 编辑

Distributed Phoenix Chat with PubSub PG2 adapter

摘要: 转自:https://www.poeticoding.com/distributed-phoenix-chat-with-pubsub-pg2-adapter/ In this article we’ll see how to cluster the Phoenix Chat nodes, usin 阅读全文

posted @ 2019-02-16 19:19 荣锋亮 阅读(550) 评论(0) 推荐(0) 编辑

showdoc 开源在线api&&技术文档管理工具

摘要: showdoc 是一个很不错的api 以及技术文档管理工具 环境准备 doker-copose 文件 version: "3" services: doc: image: registry.docker-cn.com/star7th/showdoc volumes: - "./showdoc_dat 阅读全文

posted @ 2019-02-16 14:43 荣锋亮 阅读(2750) 评论(0) 推荐(0) 编辑

上一页 1 ··· 82 83 84 85 86 87 88 89 90 ··· 122 下一页

导航