Skip to content

Commit

Permalink
Revert "dummy pwd"
Browse files Browse the repository at this point in the history
This reverts commit d5855ab.
  • Loading branch information
RazenaSaleem committed Mar 15, 2024
1 parent d5855ab commit a24ecdd
Show file tree
Hide file tree
Showing 137 changed files with 1,332 additions and 165 deletions.
2 changes: 1 addition & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ services:
postgres:
image: postgres:14
environment:
POSTGRES_PASSWORD: ""
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
ports:
- 5432:5432
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/ci-cd-automation/github-actions-pipeline.md
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ services:
postgres:
image: postgres:14
environment:
POSTGRES_PASSWORD: ""
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
healthcheck:
test: pg_isready -U "$$POSTGRES_USER" -d "$$POSTGRES_DB"
Expand All @@ -313,7 +313,7 @@ The `tracetest-config.yaml` file contains the basic setup of connecting Tracetes
postgres:
host: postgres
user: postgres
password: ""
password: postgres
port: 5432
dbname: postgres
params: sslmode=disable
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/configuration/server.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ This is an example of a `tracetest.yaml` file:
postgres:
host: postgres
user: postgres
password: ""
password: postgres
port: 5432
dbname: postgres
params: sslmode=disable
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/deployment/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Tracetest can be configured via a configuration file:
postgres:
host: postgres
user: postgres
password: ""
password: postgres
port: 5432
dbname: postgres
params: sslmode=disable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ services:
postgres:
image: postgres:14
environment:
POSTGRES_PASSWORD: ""
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
healthcheck:
test: pg_isready -U "$$POSTGRES_USER" -d "$$POSTGRES_DB"
Expand All @@ -185,7 +185,7 @@ The `tracetest-config.yaml` file contains the basic setup of connecting Tracetes
postgres:
host: postgres
user: postgres
password: ""
password: postgres
port: 5432
dbname: postgres
params: sslmode=disable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ services:
postgres:
image: postgres:14
environment:
POSTGRES_PASSWORD: ""
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
healthcheck:
test: pg_isready -U "$$POSTGRES_USER" -d "$$POSTGRES_DB"
Expand Down Expand Up @@ -162,7 +162,7 @@ The `tracetest.config.yaml` file contains the basic setup of connecting Tracetes
postgres:
host: postgres
user: postgres
password: ""
password: postgres
port: 5432
dbname: postgres
params: sslmode=disable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ services:
postgres:
image: postgres:14
environment:
POSTGRES_PASSWORD: ""
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
healthcheck:
test: pg_isready -U "$$POSTGRES_USER" -d "$$POSTGRES_DB"
Expand Down Expand Up @@ -278,7 +278,7 @@ The `tracetest.config.yaml` file contains the basic setup of connecting Tracetes
postgres:
host: postgres
user: postgres
password: ""
password: postgres
port: 5432
dbname: postgres
params: sslmode=disable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ services:
postgres:
image: postgres:14
environment:
POSTGRES_PASSWORD: ""
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
healthcheck:
test: pg_isready -U "$$POSTGRES_USER" -d "$$POSTGRES_DB"
Expand Down Expand Up @@ -156,7 +156,7 @@ The `tracetest.config.yaml` file contains the basic setup of connecting Tracetes
postgres:
host: postgres
user: postgres
password: ""
password: postgres
port: 5432
dbname: postgres
params: sslmode=disable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ The `docker-compose.yaml` includes three other services.
services:
postgres:
environment:
POSTGRES_PASSWORD: ""
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
healthcheck:
test:
Expand Down Expand Up @@ -168,7 +168,7 @@ The `tracetest.config.yaml` file contains the basic setup of connecting Tracetes
postgres:
host: postgres
user: postgres
password: ""
password: postgres
port: 5432
dbname: postgres
params: sslmode=disable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ services:
postgres:
image: postgres:14
environment:
POSTGRES_PASSWORD: ""
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
healthcheck:
test: pg_isready -U "$$POSTGRES_USER" -d "$$POSTGRES_DB"
Expand Down Expand Up @@ -279,7 +279,7 @@ The `tracetest.config.yaml` file contains the basic setup of connecting Tracetes
postgres:
host: postgres
user: postgres
password: ""
password: postgres
port: 5432
dbname: postgres
params: sslmode=disable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ The `docker-compose.yaml` includes two other services.
services:
postgres:
environment:
POSTGRES_PASSWORD: ""
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
healthcheck:
test:
Expand Down Expand Up @@ -156,7 +156,7 @@ The `tracetest.config.yaml` file contains the basic setup of connecting Tracetes
postgres:
host: postgres
user: postgres
password: ""
password: postgres
port: 5432
dbname: postgres
params: sslmode=disable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ services:
image: postgres:14
container_name: tt-postgres
environment:
POSTGRES_PASSWORD: ""
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
healthcheck:
test: pg_isready -U "$$POSTGRES_USER" -d "$$POSTGRES_DB"
Expand Down Expand Up @@ -141,7 +141,7 @@ The `tracetest-config.yaml` file contains the basic setup of connecting Tracetes
postgres:
host: postgres
user: postgres
password: ""
password: postgres
port: 5432
dbname: postgres
params: sslmode=disable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ services:
image: postgres:14
container_name: tt-postgres
environment:
POSTGRES_PASSWORD: ""
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
healthcheck:
test: pg_isready -U "$$POSTGRES_USER" -d "$$POSTGRES_DB"
Expand Down Expand Up @@ -139,7 +139,7 @@ The `tracetest-config.yaml` file contains the basic setup of connecting Tracetes
postgres:
host: tt-postgres
user: postgres
password: ""
password: postgres
port: 5432
dbname: postgres
params: sslmode=disable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ services:
postgres:
image: postgres:14
environment:
POSTGRES_PASSWORD: ""
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
healthcheck:
test: pg_isready -U "$$POSTGRES_USER" -d "$$POSTGRES_DB"
Expand Down Expand Up @@ -199,7 +199,7 @@ The `tracetest-config.yaml` file contains the basic setup of connecting Tracetes
postgres:
host: postgres
user: postgres
password: ""
password: postgres
port: 5432
dbname: postgres
params: sslmode=disable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ services:
postgres:
image: postgres:14
environment:
POSTGRES_PASSWORD: ""
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
healthcheck:
test: pg_isready -U "$$POSTGRES_USER" -d "$$POSTGRES_DB"
Expand Down Expand Up @@ -209,7 +209,7 @@ The `tracetest-config.yaml` file contains the basic setup of connecting Tracetes
postgres:
host: postgres
user: postgres
password: ""
password: postgres
port: 5432
dbname: postgres
params: sslmode=disable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ services:
postgres:
image: postgres:14
environment:
POSTGRES_PASSWORD: ""
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
healthcheck:
test: pg_isready -U "$$POSTGRES_USER" -d "$$POSTGRES_DB"
Expand Down Expand Up @@ -132,7 +132,7 @@ The `tracetest-config.yaml` file contains the basic setup of connecting Tracetes
postgres:
host: postgres
user: postgres
password: ""
password: postgres
port: 5432
dbname: postgres
params: sslmode=disable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ services:
postgres:
image: postgres:14
environment:
POSTGRES_PASSWORD: ""
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
healthcheck:
test: pg_isready -U "$$POSTGRES_USER" -d "$$POSTGRES_DB"
Expand Down Expand Up @@ -129,7 +129,7 @@ The `tracetest-config.yaml` file contains the basic setup of connecting Tracetes
postgres:
host: postgres
user: postgres
password: ""
password: postgres
port: 5432
dbname: postgres
params: sslmode=disable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ services:
postgres:
image: postgres:14
environment:
POSTGRES_PASSWORD: ""
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
healthcheck:
test: pg_isready -U "$$POSTGRES_USER" -d "$$POSTGRES_DB"
Expand Down Expand Up @@ -239,7 +239,7 @@ The `tracetest.config.yaml` file contains the basic setup of connecting Tracetes
postgres:
host: postgres
user: postgres
password: ""
password: postgres
port: 5432
dbname: postgres
params: sslmode=disable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ services:
postgres:
image: postgres:14
environment:
POSTGRES_PASSWORD: ""
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
healthcheck:
test: pg_isready -U "$$POSTGRES_USER" -d "$$POSTGRES_DB"
Expand Down Expand Up @@ -335,7 +335,7 @@ The `tracetest-config.yaml` file contains the basic setup of connecting Tracetes
postgres:
host: postgres
user: postgres
password: ""
password: postgres
port: 5432
dbname: postgres
params: sslmode=disable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ services:
postgres:
image: postgres:14
environment:
POSTGRES_PASSWORD: ""
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
healthcheck:
test: pg_isready -U "$$POSTGRES_USER" -d "$$POSTGRES_DB"
Expand Down Expand Up @@ -269,7 +269,7 @@ The `tracetest-config.yaml` file contains the basic setup of connecting Tracetes
postgres:
host: postgres
user: postgres
password: ""
password: postgres
port: 5432
dbname: postgres
params: sslmode=disable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ services:
postgres:
image: postgres:14
environment:
POSTGRES_PASSWORD: ""
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
healthcheck:
test: pg_isready -U "$$POSTGRES_USER" -d "$$POSTGRES_DB"
Expand Down Expand Up @@ -229,7 +229,7 @@ The `tracetest-config.yaml` file contains the basic setup of connecting Tracetes
postgres:
host: postgres
user: postgres
password: ""
password: postgres
port: 5432
dbname: postgres
params: sslmode=disable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ services:
postgres:
image: postgres:14
environment:
POSTGRES_PASSWORD: ""
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
healthcheck:
test: pg_isready -U "$$POSTGRES_USER" -d "$$POSTGRES_DB"
Expand Down Expand Up @@ -187,7 +187,7 @@ The `tracetest-config.yaml` file contains the basic setup of connecting Tracetes
postgres:
host: postgres
user: postgres
password: ""
password: postgres
port: 5432
dbname: postgres
params: sslmode=disable
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/server-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Tracetest can be configured using a config.yaml file placed on the same director
postgres:
host: localhost
user: postgres
password: ""
password: postgres

# Instance of jaeger that will be used to retrieve the trace of the service under test
tracingBackend:
Expand Down
2 changes: 1 addition & 1 deletion examples/collector/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ services:
postgres:
image: postgres:14
environment:
POSTGRES_PASSWORD: ""
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
healthcheck:
test: pg_isready -U "$$POSTGRES_USER" -d "$$POSTGRES_DB"
Expand Down
2 changes: 1 addition & 1 deletion examples/collector/tracetest-config.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
postgres:
host: postgres
user: postgres
password: ""
password: postgres
port: 5432
dbname: postgres
params: sslmode=disable
Expand Down
Loading

0 comments on commit a24ecdd

Please sign in to comment.