Difference between revisions of "Zabbix Kubernetes"
Jump to navigation
Jump to search
(Created page with "https://gitlab.com/frenchtoasters/zabbix-operator https://youtu.be/WYIHstLZIvg") |
|||
(11 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
+ | # Make Your Own | ||
+ | |||
+ | ## Postgres | ||
+ | |||
+ | ### Simple | ||
+ | - https://github.com/arianitu/postgres-statefulset/tree/master/config | ||
+ | |||
+ | |||
+ | ### Stateful Set | ||
+ | - https://medium.com/@suyashmohan/setting-up-postgresql-database-on-kubernetes-24a2a192e962 | ||
+ | |||
+ | ### Postgres via Crunchy | ||
+ | - https://access.crunchydata.com/documentation/postgres-operator/latest/quickstart/ | ||
+ | - https://github.com/CrunchyData/postgres-operator | ||
+ | - https://access.crunchydata.com/documentation/postgres-operator/latest/installation/pgo-client/ | ||
+ | |||
+ | ``` | ||
+ | curl -LO https://github.com/CrunchyData/postgres-operator/releases/download/v4.6.2/pgo | ||
+ | mv pgo /usr/local/bin/ | ||
+ | chmod +x /usr/local/bin/pgo | ||
+ | ``` | ||
+ | |||
+ | https://www.zabbix.com/documentation/current/manual/installation/containers | ||
+ | |||
+ | https://github.com/zabbix/zabbix-docker/blob/5.2/kubernetes.yaml | ||
+ | |||
+ | https://github.com/zabbix/zabbix-docker | ||
+ | |||
+ | https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/ | ||
+ | https://kubernetes.io/docs/concepts/overview/working-with-objects/kubernetes-objects/ | ||
+ | |||
+ | https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.21/#deploymentspec-v1-apps | ||
+ | |||
+ | |||
+ | |||
https://gitlab.com/frenchtoasters/zabbix-operator | https://gitlab.com/frenchtoasters/zabbix-operator | ||
https://youtu.be/WYIHstLZIvg | https://youtu.be/WYIHstLZIvg | ||
+ | |||
+ | |||
+ | https://www.enterprisedb.com/blog/postgres-kubernetes-or-vms-guide-framework-running-databases-best-way | ||
+ | |||
+ | |||
+ | # Make Your Own |
Latest revision as of 03:34, 16 May 2021
Make Your Own
Postgres
Simple
Stateful Set
Postgres via Crunchy
- https://access.crunchydata.com/documentation/postgres-operator/latest/quickstart/
- https://github.com/CrunchyData/postgres-operator
- https://access.crunchydata.com/documentation/postgres-operator/latest/installation/pgo-client/
curl -LO https://github.com/CrunchyData/postgres-operator/releases/download/v4.6.2/pgo mv pgo /usr/local/bin/ chmod +x /usr/local/bin/pgo
https://www.zabbix.com/documentation/current/manual/installation/containers
https://github.com/zabbix/zabbix-docker/blob/5.2/kubernetes.yaml
https://github.com/zabbix/zabbix-docker
https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/ https://kubernetes.io/docs/concepts/overview/working-with-objects/kubernetes-objects/
https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.21/#deploymentspec-v1-apps
https://gitlab.com/frenchtoasters/zabbix-operator