Skip to content

Commit 9873c04

Browse files
author
John Stallo
committed
Links to Helm documentation
1 parent ba580ae commit 9873c04

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

connected-environment/common/vsce-init.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ vsce init --public
1111

1212
The Connected Environment CLI's ```init``` command generates Docker and Kubernetes assets with default settings:
1313
* `./Dockerfile` describes the app's container image, and how the source code is built and runs within the container.
14-
* A **Helm chart** under `./charts/webfrontend` describes how to deploy the container to Kubernetes.
14+
* A [Helm chart](https://docs.helm.sh) under `./charts/webfrontend` describes how to deploy the container to Kubernetes.
1515

1616
For now it isn't necessary to understand the full content of these files. It's worth pointing out, however, that **the same Kubernetes and Docker configuration-as-code assets can be used from development through to production, thus providing better consistency across different environments.**
1717

connected-environment/get-started-netcore-visualstudio-03.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Until the development environment is successfully created you cannot debug your
2929
## Look at the files added to project
3030
While we wait for the development environment to be created, let’s look at the files that have been added to your project when you chose to use a development environment.
3131

32-
First, you can see a folder named `charts` has been added and within this a Helm chart for your application has been scaffolded. These files are used to deploy your application into the development environment.
32+
First, you can see a folder named `charts` has been added and within this a [Helm chart](https://docs.helm.sh) for your application has been scaffolded. These files are used to deploy your application into the development environment.
3333

3434
You will see a file named `Dockerfile` has been added. This file has information needed to package your application in the standard Docker format. A `HeaderPropagation.cs` file is also created, we will discuss this file later in the walkthrough.
3535

connected-environment/troubleshooting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ You may see this error when trying to access your service. For example, when you
1111
1. If the container is in the process of being built/deployed, you can wait 2-3 seconds and try accessing the service again.
1212
1. Check your port configuration. The specified port numbers should be **identical** in all the assets below:
1313
* **Dockerfile:** Specified by the `EXPOSE` instruction.
14-
* **Helm Chart:** Specified by the `externalPort` and `internalPort` values for a service (often located in a `values.yml` file),
14+
* **[Helm chart](https://docs.helm.sh):** Specified by the `externalPort` and `internalPort` values for a service (often located in a `values.yml` file),
1515
* Any ports being opened up in application code, for example in Node.js: `var server = app.listen(80, function () {...}`
1616

1717

0 commit comments

Comments
 (0)