Skip to content
This repository was archived by the owner on Jul 14, 2025. It is now read-only.

Commit d1b2947

Browse files
authored
Fixed a typo in the release pipeline that uses the wrong (#104)
context for the wws image. It also deletes the NEVER pullpolicy from the workload YAML to be consistent with other services. Signed-off-by: jiaxiao zhou <jiazho@microsoft.com>
1 parent 13ce5fa commit d1b2947

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
tags: |
8888
ghcr.io/deislabs/containerd-wasm-shims/examples/wws-js-hello:${{ env.RELEASE_VERSION }}
8989
ghcr.io/deislabs/containerd-wasm-shims/examples/wws-js-hello:latest
90-
context: images/slight
90+
context: images/wws
9191
platforms: wasi/wasm
9292
- name: untar x86_64 musl artifacts into ./deployments/k3d/.tmp dir
9393
run: |

deployments/workloads/workload.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,15 @@ spec:
9393
runtimeClassName: wasmtime-wws
9494
containers:
9595
- name: wws-hello
96-
imagePullPolicy: Never
9796
image: ghcr.io/deislabs/containerd-wasm-shims/examples/wws-js-hello:v0.7.0
9897
command: ["/"]
98+
resources: # limit the resources to 128Mi of memory and 100m of CPU
99+
limits:
100+
cpu: 100m
101+
memory: 128Mi
102+
requests:
103+
cpu: 100m
104+
memory: 128Mi
99105
---
100106
apiVersion: v1
101107
kind: Service

0 commit comments

Comments
 (0)