Skip to content

Releases: db-operator/db-operator

v2.6.1

08 May 09:50
Compare
Choose a tag to compare

Version v2.6.0 is released

What's Changed

  • Make the operatorVersion field in db optional by @allanger in #113
  • Fix the go build command in the main ci builder by @allanger in #114

Full Changelog: v2.6.0...v2.6.1

v2.6.0

26 Apr 07:28
Compare
Choose a tag to compare

Version v2.6.0 is released

What's Changed

  • Set db-operator version on database CR during full reconcile by @bobertrublik in #107

Full Changelog: v2.5.1...v2.6.0

v2.5.1

17 Apr 10:29
Compare
Choose a tag to compare

Version v2.5.1 is released

What's Changed

Full Changelog: v2.5.0...v2.5.1

v2.5.0

08 Apr 14:10
Compare
Choose a tag to compare

Version v2.5.0 is released

What's Changed

New Contributors

Full Changelog: v2.4.0...v2.5.0

v2.4.0

22 Feb 12:43
Compare
Choose a tag to compare

Version v2.4.0 is released

What's Changed

  • Configure dbinstance via external Secrets/Configmaps by @allanger in #102

Full Changelog: v2.3.0...v2.4.0

v2.3.0

09 Feb 15:20
Compare
Choose a tag to compare

Version v2.3.0 is released

What's Changed

Full Changelog: v2.2.0...v2.3.0

v2.2.0

19 Jan 09:32
Compare
Choose a tag to compare

Version v2.2.0 is released

What's Changed

Full Changelog: v2.1.1...v2.2.0

v2.1.1

02 Jan 13:41
Compare
Choose a tag to compare

Version v2.1.1 is released

What's Changed

  • Fix templated credentials for databases by @allanger in #90

Full Changelog: v2.1.0...v2.1.1

v2.0.1

02 Jan 14:16
46043ef
Compare
Choose a tag to compare

Version v2.0.1 is released

What's Changed

  • Fix templated credentials for databases by @allanger in #90

v2.1.0

20 Dec 22:56
Compare
Choose a tag to compare

Version v2.1.0 is released

What's Changed

Notes

Now it's possible to use templated credentials in DbUser objects.

Example:

kind: DbUser
spec: 
  credentials: 
    templates:
      - template: "{{ .Username }}"
        name: USERNAME
        secret: true

It works the same way as templated credentials for Databases, but DbUsers, since they down own ConfigMaps, can't write to them. So it's required that templates[].secret is set to true.

Also, DbUsers are now using same methods for managing k8s resources that Databases use and it made it possible to implement cleanup feature for users. Now, if spec.cleanup is set to true, the secret that is used by a DbUser will get an owner reference.

Full Changelog: v2.0.0...v2.1.0