Skip to content

Commit

Permalink
Update examples to use the mariadb driver
Browse files Browse the repository at this point in the history
  • Loading branch information
ProTip committed Sep 30, 2020
1 parent 3498876 commit 92331fe
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cloud/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ services:
environment:
RUNDECK_GRAILS_URL: http://localhost
RUNDECK_SERVER_FORWARDED: 'true'
RUNDECK_DATABASE_DRIVER: com.mysql.jdbc.Driver
RUNDECK_DATABASE_DRIVER: org.mariadb.jdbc.Driver
RUNDECK_DATABASE_USERNAME: rundeck
RUNDECK_DATABASE_PASSWORD: rundeck
RUNDECK_DATABASE_URL: jdbc:mysql://mysql/rundeck?autoReconnect=true&useSSL=false
Expand Down
2 changes: 1 addition & 1 deletion kubernetes/rundeckpro-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ spec:
- name: RUNDECK_GRAILS_URL
value: "http://localhost"
- name: RUNDECK_DATABASE_DRIVER
value: "com.mysql.jdbc.Driver"
value: "org.mariadb.jdbc.Driver"
- name: RUNDECK_DATABASE_URL
value: "jdbc:mysql://mysql.default.svc.cluster.local:3306/rundeckdb?autoReconnect=true&useSSL=false"
- name: RUNDECK_DATABASE_USERNAME
Expand Down
2 changes: 1 addition & 1 deletion mysql/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ services:
links:
- mysql
environment:
RUNDECK_DATABASE_DRIVER: com.mysql.jdbc.Driver
RUNDECK_DATABASE_DRIVER: org.mariadb.jdbc.Driver
RUNDECK_DATABASE_USERNAME: rundeck
RUNDECK_DATABASE_PASSWORD: rundeck
RUNDECK_DATABASE_URL: jdbc:mysql://mysql/rundeck?autoReconnect=true&useSSL=false
Expand Down

0 comments on commit 92331fe

Please sign in to comment.