Skip to content

Commit b4d70d4

Browse files
committed
READM Fixes
1 parent 02c2661 commit b4d70d4

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,14 +70,16 @@ kubectl apply -f mysql-dep.yaml
7070

7171
#### Create Service for Demo App
7272

73-
Note: this step will create a new LoadBalancer on the infrastructure
73+
Note: This step will create a new LoadBalancer on the infrastructure
7474

7575
```shell
7676
kubectl apply -f app-svc.yaml
7777
```
7878

7979
#### Create Deployment for Demo App
8080

81+
Note: The app will create the necessary tables on the MySQL on the first run
82+
8183
```shell
8284
kubectl apply -f app-dep.yaml
8385
```

kubernetes/mysql-dep.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@ spec:
4646
mountPath: /var/lib/mysql
4747
resources:
4848
limits:
49-
cpu: 300m
49+
cpu: 800m
5050
memory: 1024Mi
5151
requests:
52-
cpu: 100m
52+
cpu: 500m
5353
memory: 512Mi
5454
volumes:
5555
- name: mysql-persistent-storage

0 commit comments

Comments
 (0)