Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
This PR introduces the following changes:

* A fixup to the `osidb.acl` custom parameter being set on connection
start
* Bump of the `Dockerfile`'s ubi8 version to 8.7 (latest)
  • Loading branch information
Adrian Torres authored Dec 22, 2022
2 parents a3c4a40 + c74ed31 commit 2f548ce
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM registry.redhat.io/ubi8/ubi:8.6
FROM registry.redhat.io/ubi8/ubi:8.7

LABEL summary="OSIDB" \
maintainer="Product Security DevOps <[email protected]>"
Expand Down
2 changes: 1 addition & 1 deletion config/settings_ci.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
"gssencmode": "disable",
# this is a hack due to our inability to set a custom parameter either at
# the database or role level in managed databases such as AWS RDS
"options": "-c osidb.acl=''",
"options": "-c osidb.acl=00000000-0000-0000-0000-000000000000",
},
}
}
Expand Down
2 changes: 1 addition & 1 deletion config/settings_local.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
"gssencmode": "disable",
# this is a hack due to our inability to set a custom parameter either at
# the database or role level in managed databases such as AWS RDS
"options": "-c osidb.acl=''",
"options": "-c osidb.acl=00000000-0000-0000-0000-000000000000",
},
}
}
Expand Down
2 changes: 1 addition & 1 deletion config/settings_prod.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
"gssencmode": "disable",
# this is a hack due to our inability to set a custom parameter either at
# the database or role level in managed databases such as AWS RDS
"options": "-c osidb.acl=''",
"options": "-c osidb.acl=00000000-0000-0000-0000-000000000000",
},
}
}
Expand Down
2 changes: 1 addition & 1 deletion config/settings_shell.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"gssencmode": "disable",
# this is a hack due to our inability to set a custom parameter either at
# the database or role level in managed databases such as AWS RDS
"options": "-c osidb.acl=''",
"options": "-c osidb.acl=00000000-0000-0000-0000-000000000000",
},
}
}
2 changes: 1 addition & 1 deletion config/settings_stage.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
"gssencmode": "disable",
# this is a hack due to our inability to set a custom parameter either at
# the database or role level in managed databases such as AWS RDS
"options": "-c osidb.acl=''",
"options": "-c osidb.acl=00000000-0000-0000-0000-000000000000",
},
}
}
Expand Down

0 comments on commit 2f548ce

Please sign in to comment.