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

Commit e7b26e7

Browse files
authored
Merge pull request #1 from yangcao77/remove-outerloop-term
remove outerloop specific term
2 parents 70a171a + 2f7839b commit e7b26e7

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11

2-
.odo/
2+
.odo/
3+
.odo/odo-file-index.json
4+
.idea
5+
.DS_Store

devfile.yaml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,14 @@ components:
3636
endpoints:
3737
- name: http-8080
3838
targetPort: 8080
39-
- name: outerloop-build
39+
- name: image-build
4040
image:
4141
imageName: "dotnet-image:latest"
4242
dockerfile:
4343
uri: docker/Dockerfile
4444
buildContext: .
4545
rootRequired: false
46-
- name: outerloop-deploy
46+
- name: kubernetes-deploy
4747
attributes:
4848
deployment/replicas: 1
4949
deployment/cpuLimit: "100m"
@@ -53,7 +53,7 @@ components:
5353
deployment/container-port: 8081
5454
kubernetes:
5555
uri: kubernetes/deployment.yaml
56-
- name: outerloop-service
56+
- name: kubernetes-service
5757
attributes:
5858
deployment/replicas: 1
5959
deployment/cpuLimit: "100m"
@@ -72,7 +72,6 @@ commands:
7272
group:
7373
isDefault: true
7474
kind: build
75-
7675
- id: run
7776
exec:
7877
workingDir: ${PROJECT_SOURCE}
@@ -83,13 +82,13 @@ commands:
8382
kind: run
8483
- id: build-image
8584
apply:
86-
component: outerloop-build
85+
component: image-build
8786
- id: deploy-deployment
8887
apply:
89-
component: outerloop-deploy
88+
component: kubernetes-deploy
9089
- id: deploy-service
9190
apply:
92-
component: outerloop-service
91+
component: kubernetes-service
9392
- id: deploy
9493
composite:
9594
commands:

0 commit comments

Comments
 (0)