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

Add DB options to Keycloak CR #14374

Closed
Tracked by #13456
vmuzikar opened this issue Sep 13, 2022 · 0 comments · Fixed by #14989
Closed
Tracked by #13456

Add DB options to Keycloak CR #14374

vmuzikar opened this issue Sep 13, 2022 · 0 comments · Fixed by #14989
Assignees
Labels
area/operator Keycloak.X Operator kind/enhancement Categorizes a PR related to an enhancement
Milestone

Comments

@vmuzikar
Copy link
Contributor

vmuzikar commented Sep 13, 2022

Mapped options:

  • db
  • db-password (as a Secret)
  • db-username (as a Secret)
  • db-pool-initial-size
  • db-pool-max-size
  • db-pool-min-size
  • db-url
  • db-url-database
  • db-url-host
  • db-url-port
  • db-url-properties

CR structure:

apiVersion: k8s.keycloak.org/v2alpha1
kind: Keycloak
metadata:
  name: example-kc
spec:
  db:
    vendor: postgres
    usernameSecret: # plain text value not supported by the type
      name: keycloak-db-secret
      key: username
    passwordSecret:
      name: keycloak-db-secret
      key: password
    url: jdbc:postgresql://db-postgres-service/keycloak
    urlDatabase: keycloak
    urlHost: db-postgres-service
    urlPort: 5432
    urlProperties: extrarg
    schema: some-schema
    poolInitialSize: 1 # integer
    poolMinSize: 1 # integer
    poolMaxSize: 3 # integer
@vmuzikar vmuzikar added this to the 20.0.0 milestone Sep 13, 2022
@andre-nascimento6791 andre-nascimento6791 self-assigned this Oct 5, 2022
@vmuzikar vmuzikar modified the milestones: 20.0.0, 21.0.0 Oct 13, 2022
pedroigor added a commit to pedroigor/keycloak that referenced this issue Oct 18, 2022
pedroigor added a commit to pedroigor/keycloak that referenced this issue Oct 18, 2022
pedroigor added a commit to pedroigor/keycloak that referenced this issue Oct 18, 2022
@pedroigor pedroigor modified the milestones: 21.0.0, 20.0.0 Oct 18, 2022
pedroigor added a commit to pedroigor/keycloak that referenced this issue Oct 19, 2022
pedroigor added a commit to pedroigor/keycloak that referenced this issue Oct 19, 2022
pedroigor added a commit to pedroigor/keycloak that referenced this issue Oct 19, 2022
Closes keycloak#14374

Co-authored-by: Martin Bartoš <mabartos@redhat.com>
pedroigor added a commit to pedroigor/keycloak that referenced this issue Oct 20, 2022
Closes keycloak#14374

Co-authored-by: Martin Bartoš <mabartos@redhat.com>
vmuzikar pushed a commit that referenced this issue Oct 20, 2022
Closes #14374

Co-authored-by: Martin Bartoš <mabartos@redhat.com>
andre-nascimento6791 pushed a commit to andre-nascimento6791/keycloak-cnd-work that referenced this issue Oct 21, 2022
Closes keycloak#14374

Co-authored-by: Martin Bartoš <mabartos@redhat.com>
andre-nascimento6791 pushed a commit to andre-nascimento6791/keycloak-cnd-work that referenced this issue Dec 1, 2022
Closes keycloak#14374

Co-authored-by: Martin Bartoš <mabartos@redhat.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/operator Keycloak.X Operator kind/enhancement Categorizes a PR related to an enhancement
Projects
Status: Done
Development

Successfully merging a pull request may close this issue.

3 participants