Skip to content

Commit 3916d2d

Browse files
authored
Merge pull request spring-cloud#76 from sixtyeight/fix-postgres-secret-readme
Obvious Fix: PostgreSQL secret: typo and copy/paste error
2 parents 7a44e6c + 3c966b4 commit 3916d2d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ data:
8686
pool.size.max: 16
8787
```
8888
89-
Individual properties work fine for most cases but sometimes we yaml is more convinient. In this case we will use a single property named `application.yaml` and embed our yaml inside it:
89+
Individual properties work fine for most cases but sometimes yaml is more convinient. In this case we will use a single property named `application.yaml` and embed our yaml inside it:
9090

9191
```yaml
9292
kind: ConfigMap
@@ -144,7 +144,7 @@ This can be externalized to Secrets in yaml format:
144144
amq.password: MWYyZDFlMmU2N2Rm
145145
```
146146

147-
- **PostreSQL**
147+
- **PostgreSQL**
148148
```yaml
149149
apiVersion: v1
150150
kind: Secret
@@ -154,8 +154,8 @@ This can be externalized to Secrets in yaml format:
154154
db: postgres
155155
type: Opaque
156156
data:
157-
amq.username: dXNlcgo=
158-
amq.password: cGdhZG1pbgo=
157+
pg.username: dXNlcgo=
158+
pg.password: cGdhZG1pbgo=
159159
```
160160

161161
You can select the Secrets to consume in a number of ways:

0 commit comments

Comments
 (0)