Skip to content

Commit 1509690

Browse files
authored
[Devtools] Update Readme (#12)
* update readme with template Signed-off-by: Jordan Dubrick <[email protected]> * update deploy code link Signed-off-by: Jordan Dubrick <[email protected]> --------- Signed-off-by: Jordan Dubrick <[email protected]>
1 parent ef4ce67 commit 1509690

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

README.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,18 @@
1-
# devfile-sample-dotnet60-basic
1+
# Creating an application with a .NET60 code sample
2+
3+
**Note:** The .NET60 code sample uses the **8081** HTTP port.
4+
5+
Before you begin creating an application with this `devfile` code sample, it's helpful to understand the relationship between the `devfile` and `Dockerfile` and how they contribute to your build. You can find these files at the following URLs:
6+
7+
* [.NET60 `devfile.yaml`](https://github.com/devfile-samples/devfile-sample-dotnet60-basic/blob/main/devfile.yaml)
8+
* [.NET60 `Dockerfile`](https://github.com/devfile-samples/devfile-sample-dotnet60-basic/blob/main/docker/Dockerfile)
9+
10+
1. The `devfile.yaml` file has an [`image-build` component](https://github.com/devfile-samples/devfile-sample-dotnet60-basic/blob/main/devfile.yaml#L40-L46) that points to your `Dockerfile`.
11+
2. The [`docker/Dockerfile`](https://github.com/devfile-samples/devfile-sample-dotnet60-basic/blob/main/docker/Dockerfile) contains the instructions you need to build the code sample as a container image.
12+
3. The `devfile.yaml` [`kubernetes-deploy` component](https://github.com/devfile-samples/devfile-sample-dotnet60-basic/blob/main/devfile.yaml#L47-L59) and [`kubernetes-service` component](https://github.com/devfile-samples/devfile-sample-dotnet60-basic/blob/main/devfile.yaml#L60-L67) points to a `deployment.yaml` file and `service.yaml`that contains instructions for deploying the built container image.
13+
4. The `devfile.yaml` [`deploy` command](https://github.com/devfile-samples/devfile-sample-dotnet60-basic/blob/main/devfile.yaml#L94-L102) completes the [outerloop](https://devfile.io/docs/2.2.0/innerloop-vs-outerloop) deployment phase by pointing to the `image-build` and `kubernetes-deploy` components to create your application.
14+
15+
### Additional resources
16+
* For more information about .NET, see [.NET](https://dotnet.microsoft.com/en-us/learn/dotnet/what-is-dotnet).
17+
* For more information about devfiles, see [Devfile.io](https://devfile.io/).
18+
* For more information about Dockerfiles, see [Dockerfile reference](https://docs.docker.com/engine/reference/builder/).

0 commit comments

Comments
 (0)