Skip to content

Commit

Permalink
Fix docs for K8s
Browse files Browse the repository at this point in the history
Thanks Torrey Searle for the suggestion!
  • Loading branch information
lmangani authored Oct 30, 2023
1 parent 87d8f40 commit 248d0b0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ spec:
value: 8123
- name: CLICKHOUSE_SERVER
value: "clickhouse"
image: qxip/qryn
image: qxip/qryn:latest
name: qryn
ports:
- containerPort: 3100
Expand Down Expand Up @@ -338,7 +338,7 @@ Here's the sample Task Definition
"networkMode": "awsvpc",
"containerDefinitions": [{
"name": "<YOUR_CONTAINER_NAME>",
"image": "qryn:latest",
"image": "qxip/qryn:latest",
"essential": true,
"logConfiguration": {
"logDriver": "awslogs",
Expand Down Expand Up @@ -372,7 +372,7 @@ Here's the sample Task Definition
"FARGATE"
],
"cpu": "256",
"memory": "512",
"memory": "2048",
"executionRoleArn": "<YOUR_ECS_EXECUTION_ROLE_ARN>",
"taskRoleArn": "<YOUR_ECS_TASK_ROLE_ARN>"
}
Expand Down Expand Up @@ -409,7 +409,7 @@ Use `Google Compute Cloud` to deploy and scale `qryn` using a remote ClickHouse
Since Cloud Run only supports images from Google Container Registry (GCR) or Artifact Registry, we need to pull qryn image, tag it and push it in GCP using Cloud Shell. Here are some sample commands which you can execute in Cloud Shell.
```
# pull latest qryn image
docker pull qryn:latest
docker pull qxip/qryn:latest
```
```
# tag the image
Expand Down

0 comments on commit 248d0b0

Please sign in to comment.