diff --git a/kubernetes/README.md b/kubernetes/README.md index 3646118..a63167c 100644 --- a/kubernetes/README.md +++ b/kubernetes/README.md @@ -44,7 +44,7 @@ Using the `op-scim-deployment.yaml` and `op-scim-service.yaml` files, deploy the NOTE: In order to obtain an SSL/TLS certificate for your SCIM Bridge instance, you must include a domain name in the `containers.args` field in the `op-scim-deployment.yaml` file. This will only succeed if a DNS record exists that points to your GCP load balancer. Please read the section about DNS records at the beginning of this example. -NOTE: If you are using an existing redis instance that is not running on `redis:6379`, change the `--redis-host` and add a `--redis-port` flag to `containers.args` in the deployment yaml file. +NOTE: If you are using an existing redis instance that is not running on `redis:6379`, add the `--redis-host=[host]` and `--redis-port=[port]` flags to `containers.args` in the deployment yaml file. Example: ``` diff --git a/kubernetes/op-scim-deployment.yaml b/kubernetes/op-scim-deployment.yaml index 5fb5c9a..4f6f2ee 100644 --- a/kubernetes/op-scim-deployment.yaml +++ b/kubernetes/op-scim-deployment.yaml @@ -16,7 +16,7 @@ spec: - name: op-scim image: onepassword/scim:latest command: ["./op-scim"] - args: ["--redis-host=redis-service", "--session=/secret/scimsession", "--letsencrypt-domain={YOUR-DOMAIN-HERE}"] + args: ["--session=/secret/scimsession", "--letsencrypt-domain={YOUR-DOMAIN-HERE}"] ports: - containerPort: 3002 volumeMounts: