Fixed redis host and port in example

This commit is contained in:
agilecohix
2018-04-18 13:22:09 -04:00
parent 35b1de554d
commit 975fddcb0e
2 changed files with 2 additions and 2 deletions

View File

@@ -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:
```

View File

@@ -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: