Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions docs/examples/postgres/enterprise/postgres-enterprise-ha.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
apiVersion: kubedb.com/v1
kind: Postgres
metadata:
name: pg-enterprise-ha
namespace: demo
spec:
version: "16.9-appscode"
replicas: 3
standbyMode: Hot
license:
secretRef:
name: pg-enterprise-license
key: license.pem
storage:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 1Gi
storageClassName: local-path
deletionPolicy: WipeOut
20 changes: 20 additions & 0 deletions docs/examples/postgres/enterprise/postgres-enterprise.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
apiVersion: kubedb.com/v1
kind: Postgres
metadata:
name: pg-enterprise
namespace: demo
spec:
version: "16.9-appscode"
replicas: 1
license:
secretRef:
name: pg-enterprise-license
key: license.pem
storage:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 1Gi
storageClassName: local-path
deletionPolicy: WipeOut
1 change: 1 addition & 0 deletions docs/guides/postgres/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ aliases:
- Monitor your PostgreSQL database with KubeDB using [`out-of-the-box` builtin-Prometheus](/docs/guides/postgres/monitoring/using-builtin-prometheus.md).
- Monitor your PostgreSQL database with KubeDB using [`out-of-the-box` Prometheus operator](/docs/guides/postgres/monitoring/using-prometheus-operator.md).
- Use [private Docker registry](/docs/guides/postgres/private-registry/using-private-registry.md) to deploy PostgreSQL with KubeDB.
- Run the licensed [Postgres Enterprise by AppsCode](/docs/guides/postgres/enterprise/postgres-enterprise.md) distribution.
- Detail concepts of [Postgres object](/docs/guides/postgres/concepts/postgres.md).
- Want to hack on KubeDB? Check our [contribution guidelines](/docs/CONTRIBUTING.md).

Expand Down
10 changes: 10 additions & 0 deletions docs/guides/postgres/enterprise/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
title: Postgres Enterprise by AppsCode
menu:
docs_{{ .version }}:
identifier: pg-enterprise-postgres
name: Postgres Enterprise
parent: pg-postgres-guides
weight: 125
menu_name: docs_{{ .version }}
---
Loading
Loading