From c14656d140859b587dff8cb44c873ea2cf4566fb Mon Sep 17 00:00:00 2001 From: Duncan Stevenson-Price Date: Mon, 15 Apr 2019 08:50:30 +0100 Subject: [PATCH] Kubernetes Docs Fix Updated incorrect reference to `redis.yaml` to `redis-service.yaml` --- kubernetes/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kubernetes/README.md b/kubernetes/README.md index 4ba9c6e..b71a551 100644 --- a/kubernetes/README.md +++ b/kubernetes/README.md @@ -8,19 +8,19 @@ The 1Password SCIM bridge requires SSL/TLS in order to communicate with your IdP ## Deploy redis -Use the `redis-deployment.yaml` and `redis.yaml` files with kubectl to deploy redis. If you have an existing redis instance, skip this step. +Use the `redis-deployment.yaml` and `redis-service.yaml` files with kubectl to deploy redis. If you have an existing redis instance, skip this step. Example: ``` kubectl apply -f redis-deployment.yaml -kubectl apply -f redis.yaml +kubectl apply -f redis-service.yaml ``` This will deploy a single redis instance listening on Kubernetes internal DNS `redis:6379`, which the SCIM Bridge will use for caching during operation. A redis instance is required when using the SCIM Bridge. ## Create your `scimsession` Kubernetes secret -Firstly, use the [scim-setup.sh](https://github.com/1Password/scim-examples/tree/master/scim-setup.sh) script on your local machine to set up your account and generate a `scimsession` file. This script uses a Docker container to run the `op-scim setup` command and writes the scimsession file back to your local machine using a mounted volume. Your bearer token will be printed to the console. +Firstly, use the [scim-setup.sh](https://github.com/1Password/scim-examples/tree/master/scim-setup.sh) script on your local machine to set up your account and generate a `scimsession` file. This script uses a Docker container to run the `op-scim setup` command and writes the scimsession file back to your local machine using a mounted volume. Your bearer token will be printed to the console. The scimsession file is equivalent to your account key and master password when combined with the bearer token, therefore they should never be stored in the same place.