Browse Source

💄 Fixed typo. (#346)

pull/349/head
Pure Krome 6 years ago
committed by GitHub
parent
commit
fac2fa19e0
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      docs/tutorials/hello-tye/01_deploy.md
  2. 2
      docs/tutorials/hello-tye/02_add_redis.md

4
docs/tutorials/hello-tye/01_deploy.md

@ -12,9 +12,9 @@ Before we deploy, make sure you have the following ready...
3. A Kubernetes Cluster. There are many different options here, including:
- [Azure Kubernetes Service](https://docs.microsoft.com/en-us/azure/aks/tutorial-kubernetes-deploy-cluster)
- [Kubernetes in Docker Desktop](https://www.docker.com/blog/docker-windows-desktop-now-kubernetes/)x, however it does take up quite a bit of memory on your machine, so use with caution.
- [Kubernetes in Docker Desktop](https://www.docker.com/blog/docker-windows-desktop-now-kubernetes/), however it does take up quite a bit of memory on your machine, so use with caution.
- [Minikube](https://kubernetes.io/docs/tasks/tools/install-minikube/)
- [K3s](https://k3s.io), a lightweight single-binary certified Kubernetes distribution from Rancher.x
- [K3s](https://k3s.io), a lightweight single-binary certified Kubernetes distribution from Rancher.
- Another Kubernetes provider of your choice.
> :warning: If you choose a container registry provided by a cloud provider (other than Dockerhub), you will likely have to take some steps to configure your kubernetes cluster to allow access. Follow the instructions provided by your cloud provider.

2
docs/tutorials/hello-tye/02_add_redis.md

@ -9,7 +9,7 @@ We just showed how `tye` makes it easier to communicate between 2 applications r
1. Change the `WeatherForecastController.Get()` method in the `backend` project to cache the weather information in redis using an `IDistributedCache`.
Add the following `using`s to the top of the file:
Add the following `using`'s to the top of the file:
```C#
using Microsoft.Extensions.Caching.Distributed;

Loading…
Cancel
Save