Skip to content

Commit

Permalink
Use latest img.
Browse files Browse the repository at this point in the history
Signed-off-by: Klaus Ma <klausm@nvidia.com>
  • Loading branch information
k82cn committed Jan 13, 2025
1 parent f8915aa commit 9b421c5
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 7 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,15 @@ jobs:
uses: helm/kind-action@v1
with:
config: ci/kind.yaml
- name: Build and Load images
cluster_name: flame_ci_cluster
- name: Build images
run: |
make
kind load docker-image xflops/flame-session-manager:v0.3.0
kind load docker-image xflops/flame-executor-manager:v0.3.0
make ci-image
- name: Load images
run: |
kind load docker-image --name flame_ci_cluster xflops/flame-session-manager:latest
kind load docker-image --name flame_ci_cluster xflops/flame-executor-manager:latest
kind load docker-image --name flame_ci_cluster xflops/flame-console:latest
- name: Deploy Flame
run: |
kubectl apply -k installer/
Expand Down
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,8 @@ init:
docker-release: init
sudo docker build -t xflops/flame-session-manager:${FSM_TAG} -f docker/Dockerfile.fsm .
sudo docker build -t xflops/flame-executor-manager:${FEM_TAG} -f docker/Dockerfile.fem .

ci-image:
sudo docker build -t xflops/flame-session-manager -f docker/Dockerfile.fsm .
sudo docker build -t xflops/flame-executor-manager -f docker/Dockerfile.fem .
sudo docker build -t xflops/flame-console -f docker/Dockerfile.console .
3 changes: 2 additions & 1 deletion installer/flame-console.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ spec:
spec:
containers:
- name: console
image: xflops/flame-console:v0.3.0
image: xflops/flame-console:latest
imagePullPolicy: IfNotPresent
env:
- name: RUST_LOG
value: "info"
Expand Down
3 changes: 2 additions & 1 deletion installer/flame-executor-manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ spec:
spec:
containers:
- name: fem
image: xflops/flame-executor-manager:v0.3.0
image: xflops/flame-executor-manager:latest
imagePullPolicy: IfNotPresent
env:
- name: RUST_LOG
value: "info"
Expand Down
3 changes: 2 additions & 1 deletion installer/flame-session-manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ spec:
spec:
containers:
- name: fsm
image: xflops/flame-session-manager:v0.3.0
image: xflops/flame-session-manager:latest
imagePullPolicy: IfNotPresent
env:
- name: RUST_LOG
value: "info"
Expand Down
1 change: 1 addition & 0 deletions installer/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ resources:
- flame-system.yaml
- flame-executor-manager.yaml
- flame-session-manager.yaml
- flame-console.yaml
- fsm-service.yaml
configMapGenerator:
- name: flame-conf
Expand Down

0 comments on commit 9b421c5

Please sign in to comment.