From a160ab9788ef5039c3b1f8e5c8e208cfb2cfd6e8 Mon Sep 17 00:00:00 2001 From: unknown Date: Fri, 27 Sep 2019 10:50:44 -0700 Subject: [PATCH] updated links --- 2.hello-kubernetes/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/2.hello-kubernetes/README.md b/2.hello-kubernetes/README.md index 948862ba..d619672f 100644 --- a/2.hello-kubernetes/README.md +++ b/2.hello-kubernetes/README.md @@ -6,14 +6,14 @@ This tutorial will get you up and running with Actions in a Kubernetes cluster. ## Step 1 - Setup Actions on your Kubernetes Cluster -The first thing you need is an RBAC enabled Kubernetes cluster. This could be running on your machine using Minikube, or it could be a fully-fledged cluser in Azure using [AKS](https://azure.microsoft.com/en-us/services/kubernetes-service/). Once you have a cluster, follow [these steps](/../../#install-on-kubernetes) to deploy Actions to it. +The first thing you need is an RBAC enabled Kubernetes cluster. This could be running on your machine using Minikube, or it could be a fully-fledged cluser in Azure using [AKS](https://azure.microsoft.com/en-us/services/kubernetes-service/). Once you have a cluster, follow [these steps](https://github.com/actionscore/actions#install-on-kubernetes) to deploy Actions to it. ## Step 2 - Create and Configure a State Store Actions can use a number of different state stores (Redis, CosmosDB, DynamoDB, Cassandra, etc.) to persist and retrieve state. For this demo, we'll use Redis. -1. Follow [these steps](../../docs/components/redis.md#Creating-a-Redis-Store) to create a Redis store. +1. Follow [these steps](https://github.com/actionscore/docs/blob/master/concepts/components/redis.md#creating-a-redis-store) to create a Redis store. 2. Once your store is created, add the keys to the `redis.yaml` file in the `deploy` directory. > **Note:** the `redis.yaml` file provided in this sample takes plain text secrets. In a production-grade application, follow [secret management](https://github.com/actionscore/actions/blob/master/docs/components/secrets.md) instructions to securely manage your secrets. 3. Apply the `redis.yaml` file: `kubectl apply -f ./deploy/redis.yaml` and observe that your state store was successfully configured!