Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docs for cloud deployment using helm. #255

Merged
merged 5 commits into from
Jun 5, 2024
Merged
Changes from 4 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
7 changes: 6 additions & 1 deletion content/en/cloud/self-hosted/deploy-with-helm.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,16 @@ kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/cont

The first service to install is the Postgres database. The following command installs the Postgres database and initializes it's dataset. The dataset is used by the Layer5 Cloud server and the Layer5 Cloud identity provider.

Layer5 Cloud `postgres` instance requires [pg_cron](https://github.com/citusdata/pg_cron) extension to be enabled and configured in the `postgres` database to schedule PostgreSQL commands.
The cloud instance is bundled with required migrations to schedule jobs and execute required commands/sql queries.

__NOTE: Configuring the extension in some other database will result in failure to apply SQL migrations.__

##### 1. Install Postgres database

```bash
helm install -f ./install/postgresql/values.yaml postgres ./install/postgresql -n <namespace>
helm repo add bitnami https://charts.bitnami.com/bitnami
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@MUzairS15, point of clarification - this change has nothing to do with pgcron, right? We just have the wrong instructions posted currently, right?

@sangramrath, FYI

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@sangramrath, should we be looking at using CloudNativePG here?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@MUzairS15 can this be included as a sub-chart? Or would doing so hinder upgrades?

helm install postgresql bitnami/postgresql --version 14.0.1
```

##### 2. Install Remote Provider Server and Identity Provider
Expand Down
Loading