Skip to content
This repository has been archived by the owner on Mar 2, 2024. It is now read-only.

v0.0.49

Compare
Choose a tag to compare
@okctl-bot okctl-bot released this 23 Mar 10:43
· 545 commits to master since this release
31fcf3a

Release 0.0.49

In this release we have a new feature that might interest many, we now provide the ability to create an AWS RDS Postgres from the declared cluster:

One simply has to add the following section to the scaffolded cluster.yaml file:

metadata:
  environment: test
databases:
  postgres:
    - name: dbtest
      user: administrator
      namespace: dbtest

Followed by applying the updated declaration with:

$ okctl apply cluster -f cluster.yaml

One can then use the new attach command to connect to the database with psql:

$ okctl attach postgres --environment test --name dbtest

When we create the database we also set up:

  • Secrets manager secret for the administrator password
  • Rotation of the password every 30 days
  • A security group that allows connectivity to RDS Postgres
  • Create an ExternalSecret and ConfigMap in the namespace that make available the required information

Features

KM181: Manage the lifecycle of RDS Postgres (#387, #398)

Bugfixes

KM196: Add handling of timeout errors for ExternalDNS (#397)

Other