Skip to content

Commit cb23814

Browse files
committed
chore: update pgAdmin
1 parent 685ac47 commit cb23814

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

charts/chaingraph/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ pgAdmin:
118118
# Enable a local pgAdmin installation. (This should only be used during development.)
119119
enable: false
120120
# The precise pgAdmin Docker image to use (only used if `pgAdmin.enable` is `true`).
121-
image: dpage/pgadmin4@sha256:49aa611e99d306ba864a7211fad4b02ac31f59edeb2e93aeb4bed032429a27cc #v6.18
121+
image: dpage/pgadmin4@sha256:2efd6d20c528e939f28257bdb0160b3907a677151199a11a4e72c9704697ab70 #v6.20
122122
# The size of the volume to provision for pgAdmin (only used if `pgAdmin.enable` is `true`).
123123
volumeSize: 10Gi
124124
# The admin email/username used to log in to pgAdmin

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,11 +91,11 @@
9191
"local:postgres:tune": "yarn local:postgres:psql -c \"ALTER SYSTEM SET shared_buffers = '2048MB'\" && yarn local:postgres:psql -c \"ALTER SYSTEM SET effective_cache_size = '6144MB'\" && yarn local:postgres:psql -c \"ALTER SYSTEM SET maintenance_work_mem = '128MB'\" && yarn local:postgres:psql -c \"ALTER SYSTEM SET checkpoint_completion_target = '0.9'\" && yarn local:postgres:psql -c \"ALTER SYSTEM SET min_wal_size = '4GB'\" && yarn local:postgres:psql -c \"ALTER SYSTEM SET max_wal_size = '16GB'\" && yarn local:postgres:psql -c \"ALTER SYSTEM SET default_statistics_target = '500'\" && yarn local:postgres:psql -c \"ALTER SYSTEM SET random_page_cost = '1.1'\" && yarn local:postgres:psql -c \"ALTER SYSTEM SET max_connections = '50'\" && yarn local:postgres:psql -c \"ALTER SYSTEM SET work_mem = '8MB'\" && yarn local:postgres:psql -c \"ALTER SYSTEM SET max_worker_processes = '8'\" && yarn local:postgres:psql -c \"ALTER SYSTEM SET max_parallel_workers_per_gather = '4'\" && yarn local:postgres:psql -c \"ALTER SYSTEM SET max_parallel_workers = '8'\" && yarn local:postgres:psql -c \"ALTER SYSTEM SET max_parallel_maintenance_workers = '4'\" && yarn local:postgres:psql -c \"ALTER SYSTEM SET effective_io_concurrency = '200'\" || echo '\n(no need to set effective_io_concurrency on macOS, tuning complete. 👍)'",
9292
"local:postgres:psql": "psql postgres://chaingraph:very_insecure_postgres_password@localhost:5432/postgres",
9393
"local:postgres:dump:e2e": "pg_dump postgres://chaingraph:very_insecure_postgres_password@localhost:5432/chaingraph_e2e_test > data/dump_e2e_test.sql && echo \"\nDumped chaingraph_e2e_test DB to: data/dump_e2e_test.sql\"",
94-
"local:postgres:enable-logs": "yarn local:postgres:psql -c \"ALTER DATABASE postgres SET log_statement = 'all';\" && echo \"\nLogging enabled for new client connections. If 'local:posgres' is running, try restarting it to reset all connections.\"",
95-
"local:postgres:disable-logs": "yarn local:postgres:psql -c \"ALTER DATABASE postgres SET log_statement = 'ddl';\" && echo \"\nLogging disabled for new client connections. If 'local:posgres' is running, try restarting it to reset all client connections.\"",
96-
"local:postgres:configure-pghero-step-1": "yarn local:postgres:psql -c \"ALTER SYSTEM SET shared_preload_libraries = 'pg_stat_statements';\" && yarn local:postgres:psql -c \"ALTER SYSTEM SET track_activity_query_size = 20480;\" && echo \"\nThe 'pg_stat_statements' extension will be enabled when the Postgres database is restarted. If 'local:posgres' is running, restart it; if using the built-in Postgres, try: 'yarn dev-cluster:bounce:postgres'.\"",
94+
"local:postgres:enable-logs": "yarn local:postgres:psql -c \"ALTER DATABASE postgres SET log_statement = 'all';\" && echo \"\nLogging enabled for new client connections. If 'local:postgres' is running, try restarting it to reset all connections.\"",
95+
"local:postgres:disable-logs": "yarn local:postgres:psql -c \"ALTER DATABASE postgres SET log_statement = 'ddl';\" && echo \"\nLogging disabled for new client connections. If 'local:postgres' is running, try restarting it to reset all client connections.\"",
96+
"local:postgres:configure-pghero-step-1": "yarn local:postgres:psql -c \"ALTER SYSTEM SET shared_preload_libraries = 'pg_stat_statements';\" && yarn local:postgres:psql -c \"ALTER SYSTEM SET track_activity_query_size = 20480;\" && echo \"\nThe 'pg_stat_statements' extension will be enabled when the Postgres database is restarted. If 'local:postgres' is running, restart it; if using the built-in Postgres, try: 'yarn dev-cluster:bounce:postgres'.\"",
9797
"local:postgres:configure-pghero-step-2": "yarn local:postgres:psql -c \"ALTER SYSTEM SET pg_stat_statements.track = 'all';\" && yarn local:postgres:psql -c \"SELECT pg_reload_conf();\" && echo \"\nThe 'pg_stat_statements' extension is now tracking all queries. PgHero should be fully functional.\"",
98-
"local:postgres:enable-pldbgapi": "yarn local:postgres:psql -c \"ALTER SYSTEM SET shared_preload_libraries = pg_stat_statements,'\\$libdir/plugin_debugger';\" && echo \"\nThe 'pg_stat_statements' and 'plugin_debugger' extensions will be enabled when the Postgres database is restarted. If 'local:posgres' is running, restart it; if using the built-in Postgres, try: 'yarn dev-cluster:bounce:postgres'.\"",
98+
"local:postgres:enable-pldbgapi": "yarn local:postgres:psql -c \"ALTER SYSTEM SET shared_preload_libraries = pg_stat_statements,'\\$libdir/plugin_debugger';\" && echo \"\nThe 'pg_stat_statements' and 'plugin_debugger' extensions will be enabled when the Postgres database is restarted. If 'local:postgres' is running, restart it; if using the built-in Postgres, try: 'yarn dev-cluster:bounce:postgres'.\"",
9999
"image:build:agent": "docker build -f images/agent/Dockerfile . -t chaingraph/agent:dev-build",
100100
"image:build:bchn": "cd images/bitcoin-cash-node && docker build -t chaingraph/bitcoin-cash-node:dev-build .",
101101
"image:build:hasura": "cd images/hasura && docker build -t chaingraph/hasura:dev-build .",

0 commit comments

Comments
 (0)