2019-04-19 00:02:10 +08:00
[#]: collector: (lujun9972)
[#]: translator: (arrowfeng)
2019-04-22 10:57:46 +08:00
[#]: reviewer: (wxy)
2019-04-22 10:58:24 +08:00
[#]: publisher: (wxy)
[#]: url: (https://linux.cn/article-10762-1.html)
2019-04-19 00:02:10 +08:00
[#]: subject: (How to run PostgreSQL on Kubernetes)
[#]: via: (https://opensource.com/article/19/3/how-run-postgresql-kubernetes)
[#]: author: (Jonathan S. Katz https://opensource.com/users/jkatz05)
2019-04-22 10:57:46 +08:00
怎样在 Kubernetes 上运行 PostgreSQL
2019-04-19 00:02:10 +08:00
======
2019-04-22 10:57:46 +08:00
> 创建统一管理的, 具备灵活性的云原生生产部署来部署一个个性化的数据库即服务( DBaaS) 。
2019-04-19 00:02:10 +08:00
![cubes coming together to create a larger cube][1]
2019-04-22 10:57:46 +08:00
通过在 [Kubernetes][2] 上运行 [PostgreSQL][3] 数据库,你能创建统一管理的,具备灵活性的云原生生产部署应用来部署一个个性化的数据库即服务为你的特定需求进行量身定制。
2019-04-19 00:02:10 +08:00
2019-04-22 10:57:46 +08:00
对于 Kubernetes, 使用 Operator 允许你提供额外的上下文去[管理有状态应用][4]。当使用像PostgreSQL 这样开源的数据库去执行包括配置、扩展、高可用和用户管理时, Operator 也很有帮助。
2019-04-19 00:02:10 +08:00
2019-04-22 10:57:46 +08:00
让我们来探索如何在 Kubernetes 上启动并运行 PostgreSQL。
2019-04-19 00:02:10 +08:00
### 安装 PostgreSQL Operator
2019-04-22 10:57:46 +08:00
将 PostgreSQL 和 Kubernetes 结合使用的第一步是安装一个 Operator。在针对 Linux 系统的Crunchy 的[快速启动脚本][6]的帮助下,你可以在任意基于 Kubernetes 的环境下启动和运行开源的[Crunchy PostgreSQL Operator][5]。
2019-04-19 00:02:10 +08:00
快速启动脚本有一些必要前提:
2019-04-22 10:57:46 +08:00
* [Wget][7] 工具已安装。
* [kubectl][8] 工具已安装。
* 在你的 Kubernetes 中已经定义了一个 [StorageClass][9]。
* 拥有集群权限的可访问 Kubernetes 的用户账号,以安装 Operator 的 [RBAC][10] 规则。
* 一个 PostgreSQL Operator 的 [命名空间][11]。
2019-04-19 00:02:10 +08:00
2019-04-22 10:57:46 +08:00
执行这个脚本将提供给你一个默认的 PostgreSQL Operator 部署,其默认假设你采用 [动态存储][12]和一个名为 `standard` 的 StorageClass。这个脚本允许用户采用自定义的值去覆盖这些默认值。
2019-04-19 00:02:10 +08:00
通过下列命令,你能下载这个快速启动脚本并把它的权限设置为可执行:
2019-04-22 10:57:46 +08:00
2019-04-19 00:02:10 +08:00
```
wget < https: / / raw . githubusercontent . com / CrunchyData / postgres-operator / master / examples / quickstart . sh >
chmod +x ./quickstart.sh
```
然后你运行快速启动脚本:
2019-04-22 10:57:46 +08:00
2019-04-19 00:02:10 +08:00
```
./examples/quickstart.sh
```
2019-04-22 10:57:46 +08:00
在脚本提示你相关的 Kubernetes 集群基本信息后,它将执行下列操作:
* 下载 Operator 配置文件
* 将 `$HOME/.pgouser` 这个文件设置为默认设置
* 以 Kubernetes [Deployment][13] 部署 Operator
* 设置你的 `.bashrc` 文件包含 Operator 环境变量
* 设置你的 `$HOME/.bash_completion` 文件为 `pgo bash_completion` 文件
2019-04-19 00:02:10 +08:00
2019-04-22 10:57:46 +08:00
在快速启动脚本的执行期间,你将会被提示在你的 Kubernetes 集群设置 RBAC 规则。在另一个终端,执行快速启动命令所提示你的命令。
2019-04-19 00:02:10 +08:00
2019-04-22 10:57:46 +08:00
一旦这个脚本执行完成,你将会得到提示设置一个端口以转发到 PostgreSQL Operator pod。在另一个终端, 执行这个端口转发操作; 这将允许你开始对 PostgreSQL Operator 执行命令!尝试输入下列命令创建集群:
2019-04-19 00:02:10 +08:00
```
pgo create cluster mynewcluster
```
你能输入下列命令测试你的集群运行状况:
```
pgo test mynewcluster
```
2019-04-22 10:57:46 +08:00
现在,你能在 Kubernetes 环境下管理你的 PostgreSQL 数据库了!你可以在[官方文档][14]找到非常全面的命令,包括扩容,高可用,备份等等。
2019-04-19 00:02:10 +08:00
2019-04-22 10:57:46 +08:00
这篇文章部分参考了该作者为 Crunchy 博客而写的[在 Kubernetes 上开始运行 PostgreSQL][15]。
2019-04-19 00:02:10 +08:00
--------------------------------------------------------------------------------
via: https://opensource.com/article/19/3/how-run-postgresql-kubernetes
作者:[Jonathan S. Katz][a]
选题:[lujun9972][b]
译者:[arrowfeng](https://github.com/arrowfeng)
2019-04-22 10:57:46 +08:00
校对:[wxy](https://github.com/wxy)
2019-04-19 00:02:10 +08:00
本文由 [LCTT ](https://github.com/LCTT/TranslateProject ) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
[a]: https://opensource.com/users/jkatz05
[b]: https://github.com/lujun9972
[1]: https://opensource.com/sites/default/files/styles/image-full-size/public/lead-images/cube_innovation_process_block_container.png?itok=vkPYmSRQ (cubes coming together to create a larger cube)
[2]: https://www.postgresql.org/
[3]: https://kubernetes.io/
[4]: https://opensource.com/article/19/2/scaling-postgresql-kubernetes-operators
[5]: https://github.com/CrunchyData/postgres-operator
[6]: https://crunchydata.github.io/postgres-operator/stable/installation/#quickstart-script
[7]: https://www.gnu.org/software/wget/
[8]: https://kubernetes.io/docs/tasks/tools/install-kubectl/
[9]: https://kubernetes.io/docs/concepts/storage/storage-classes/
[10]: https://kubernetes.io/docs/reference/access-authn-authz/rbac/
[11]: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
[12]: https://kubernetes.io/docs/concepts/storage/dynamic-provisioning/
[13]: https://kubernetes.io/docs/concepts/workloads/controllers/deployment/
[14]: https://crunchydata.github.io/postgres-operator/stable/#documentation
[15]: https://info.crunchydata.com/blog/get-started-runnning-postgresql-on-kubernetes