Skip to content

Commit 78f807d

Browse files
committed
Small fixes
1 parent 1753e9a commit 78f807d

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

examples/cloud-deployment/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,8 @@ cd scripts
9090
./deploy.sh --container-tool podman
9191
```
9292

93+
Note that using Kind with Podman on Linux may have some occasional issues due to Kind's experimental support for Podman. In our testing, a reboot normally solves this.
94+
9395
The script will:
9496
- Create Kind cluster with local registry support (if not already exists)
9597
- Set up local container registry (localhost:5001)

examples/cloud-deployment/k8s/01-postgres.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ spec:
3939
spec:
4040
containers:
4141
- name: postgres
42-
image: postgres:16
42+
image: mirror.gcr.io/postgres:16
4343
ports:
4444
- containerPort: 5432
4545
name: postgres

examples/cloud-deployment/scripts/deploy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ echo "========================================="
77
echo ""
88

99
# Color codes for output
10-
RED='\033[0.31m'
10+
RED='\033[0;31m'
1111
GREEN='\033[0;32m'
1212
YELLOW='\033[1;33m'
1313
NC='\033[0m' # No Color

0 commit comments

Comments
 (0)