Skip to content

Commit d7fa9c9

Browse files
authored
fix: Fix dashboards in end-to-end-security demo (#287)
1 parent 1beca43 commit d7fa9c9

File tree

4 files changed

+7329
-5
lines changed

4 files changed

+7329
-5
lines changed

demos/end-to-end-security/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
5. `pgdump` the Postgres and update the dump in Git. For that shell into `postgresql-superset-0` and execute
88

99
```sh
10-
export PGPASSWORD="$POSTGRES_POSTGRES_PASSWORD"
10+
export PGPASSWORD=$(cat "${POSTGRES_POSTGRES_PASSWORD_FILE}")
1111

12-
pg_dumpall -Upostgres | gzip -c > /tmp/dump.sql.gz
12+
pg_dumpall -Upostgres > /tmp/dump.sql
1313
```
1414

1515
Afterwards copy the dump to your local machine using
1616

1717
```sh
18-
kubectl cp postgresql-superset-0:/tmp/dump.sql.gz postgres_superset_dump.sql.gz
18+
kubectl cp postgresql-superset-0:/tmp/dump.sql postgres_superset_dump.sql
1919
```

0 commit comments

Comments
 (0)