Skip to content

Commit a3cb630

Browse files
committed
merged 0.15
1 parent baa69c4 commit a3cb630

File tree

12 files changed

+14
-12
lines changed

12 files changed

+14
-12
lines changed

.devcontainer/on-create.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,8 @@ kic cluster create
107107
echo "Pulling docker images"
108108
docker pull mcr.microsoft.com/dotnet/sdk:7.0
109109
docker pull mcr.microsoft.com/dotnet/aspnet:7.0-alpine
110-
docker pull ghcr.io/cse-labs/res-edge-webv:0.14
111-
docker pull ghcr.io/cse-labs/res-edge-automation:0.14
110+
docker pull ghcr.io/cse-labs/res-edge-webv:0.15
111+
docker pull ghcr.io/cse-labs/res-edge-automation:0.15
112112

113113
sudo apt-get update
114114

.devcontainer/post-start.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ echo "$(date +'%Y-%m-%d %H:%M:%S') post-start start" >> "$HOME/status"
88
echo "Pulling docker images"
99
docker pull mcr.microsoft.com/dotnet/sdk:7.0
1010
docker pull mcr.microsoft.com/dotnet/aspnet:7.0-alpine
11-
docker pull ghcr.io/cse-labs/res-edge-webv:0.14
12-
docker pull ghcr.io/cse-labs/res-edge-automation:0.14
11+
docker pull ghcr.io/cse-labs/res-edge-webv:0.15
12+
docker pull ghcr.io/cse-labs/res-edge-automation:0.15
1313

1414
echo "post-start complete"
1515
echo "$(date +'%Y-%m-%d %H:%M:%S') post-start complete" >> "$HOME/status"

.ds/commands/test/all

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ echo "Running tests on the cluster with both successful and failing requests"
44

55
# Integration.json is executed 5 times to generate more metrics for dashboard
66
docker run --net host --rm \
7-
ghcr.io/cse-labs/res-edge-webv:0.14 \
7+
ghcr.io/cse-labs/res-edge-webv:0.15 \
88
--server "${DS_URL}" \
99
--log-format TsvMin \
1010
--timeout 5 \

.ds/commands/test/integration

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ echo "Running integration tests on the cluster with failing requests (400 and 40
55
#!/bin/bash
66

77
docker run --net host --rm \
8-
ghcr.io/cse-labs/res-edge-webv:0.14 \
8+
ghcr.io/cse-labs/res-edge-webv:0.15 \
99
--server "${DS_URL}" \
1010
--log-format TsvMin \
1111
--timeout 5 \

.ds/commands/test/load

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ echo "Running integration tests on the cluster with failing requests (400 and 40
55
#!/bin/bash
66

77
docker run --net host --rm \
8-
ghcr.io/cse-labs/res-edge-webv:0.14 \
8+
ghcr.io/cse-labs/res-edge-webv:0.15 \
99
--server "${DS_URL}" \
1010
--log-format TsvMin \
1111
--timeout 5 \

.ds/webv-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# webv config
33
###
44

5-
image: ghcr.io/cse-labs/res-edge-webv:0.14
5+
image: ghcr.io/cse-labs/res-edge-webv:0.15
66
server: "${DS_URL}"
77
logformat: TsvMin
88
verbose: false

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,8 @@ The first lab is an `inner-loop` lab that introduces Codespaces and the various
103103

104104
[Lab](./labs/deploy-res-edge.md#inner-loop-with-res-edge): Deploy Resilient Edge Data Service to Codespaces
105105

106+
![Res-Edge](docs/images/res-edge-diagram.drawio.png)
107+
106108
## Assign a Group to a Namespace
107109

108110
> This lab is a prerequisite for the Kustomize lab

deploy/api/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ spec:
2020
terminationGracePeriodSeconds: 30
2121
containers:
2222
- name: app
23-
image: ghcr.io/cse-labs/res-edge:0.14
23+
image: ghcr.io/cse-labs/res-edge:0.15
2424
imagePullPolicy: Always
2525
ports:
2626
- name: http

deploy/mssql/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ spec:
2020
terminationGracePeriodSeconds: 30
2121
containers:
2222
- name: mssql
23-
image: ghcr.io/cse-labs/res-edge-sql:0.14
23+
image: ghcr.io/cse-labs/res-edge-sql:0.15
2424
imagePullPolicy: Always
2525
ports:
2626
- containerPort: 1433

deploy/ui/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ spec:
2020
terminationGracePeriodSeconds: 30
2121
containers:
2222
- name: app
23-
image: ghcr.io/cse-labs/res-edge-ui:0.14
23+
image: ghcr.io/cse-labs/res-edge-ui:0.15
2424
imagePullPolicy: Always
2525
env:
2626
- name: DATA_SERVICE_URL

0 commit comments

Comments
 (0)