-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #231 from esune/feat/issuer-build-parameters
Moved external build resources to repository
- Loading branch information
Showing
4 changed files
with
38 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
FROM docker.io/bcgovimages/aries-cloudagent:py36-1.16-1_0.7.4 | ||
|
||
RUN echo "Just pulling the image from Docker Hub" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 31 additions & 0 deletions
31
openshift/templates/issuer-wallet/config/postgresql-cfg/autovacuum.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
#============================================================================== | ||
# AUTOVACUUM PARAMETERS | ||
#------------------------------------------------------------------------------ | ||
|
||
autovacuum = on # Enable autovacuum subprocess? 'on' | ||
# requires track_counts to also be on. | ||
#log_autovacuum_min_duration = -1 # -1 disables, 0 logs all actions and | ||
# their durations, > 0 logs only | ||
# actions running at least this number | ||
# of milliseconds. | ||
#autovacuum_max_workers = 3 # max number of autovacuum subprocesses | ||
# (change requires restart) | ||
#autovacuum_naptime = 1min # time between autovacuum runs | ||
#autovacuum_vacuum_threshold = 50 # min number of row updates before | ||
# vacuum | ||
#autovacuum_analyze_threshold = 50 # min number of row updates before | ||
# analyze | ||
autovacuum_vacuum_scale_factor = 0.002 # fraction of table size before vacuum | ||
autovacuum_analyze_scale_factor = 0.001 # fraction of table size before analyze | ||
#autovacuum_freeze_max_age = 200000000 # maximum XID age before forced vacuum | ||
# (change requires restart) | ||
#autovacuum_multixact_freeze_max_age = 400000000 # maximum multixact age | ||
# before forced vacuum | ||
# (change requires restart) | ||
#autovacuum_vacuum_cost_delay = 20ms # default vacuum cost delay for | ||
# autovacuum, in milliseconds; | ||
# -1 means use vacuum_cost_delay | ||
#autovacuum_vacuum_cost_limit = -1 # default vacuum cost limit for | ||
# autovacuum, -1 means use | ||
# vacuum_cost_limit | ||
#============================================================================== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters