mirror of https://github.com/dapr/docs.git
update endpoint in s3 binding doc (#2049)
* update endpoint in s3 binding doc Signed-off-by: lizzzcai <lizzzcai1@gmail.com> * fix jaeger link Signed-off-by: lizzzcai <lizzzcai1@gmail.com> * update endpoint example to match region Signed-off-by: lizzzcai <lizzzcai1@gmail.com> Co-authored-by: Mark Fussell <mfussell@microsoft.com> Signed-off-by: Antonio Robson de Paula <robson.p@sidi.org.br>
This commit is contained in:
parent
f17e08a888
commit
f91089b24d
|
@ -83,7 +83,7 @@ spec:
|
|||
|
||||
#### Production
|
||||
|
||||
Jaeger uses Elasticsearch as the backend storage, and you can create a secret in k8s cluster to access Elasticsearch server with access control. See [Configuring and Deploying Jaeger](https://docs.openshift.com/container-platform/4.7/jaeger/jaeger_install/rhbjaeger-deploying.html)
|
||||
Jaeger uses Elasticsearch as the backend storage, and you can create a secret in k8s cluster to access Elasticsearch server with access control. See [Configuring and Deploying Jaeger](https://docs.openshift.com/container-platform/4.9/distr_tracing/distr_tracing_install/distr-tracing-deploying.html)
|
||||
|
||||
```shell
|
||||
kubectl create secret generic jaeger-secret --from-literal=ES_PASSWORD='xxx' --from-literal=ES_USERNAME='xxx' -n ${NAMESPACE}
|
||||
|
|
|
@ -27,6 +27,8 @@ spec:
|
|||
value: mybucket
|
||||
- name: region
|
||||
value: us-west-2
|
||||
- name: endpoint
|
||||
value: s3-us-west-2.amazonaws.com
|
||||
- name: accessKey
|
||||
value: *****************
|
||||
- name: secretKey
|
||||
|
@ -51,6 +53,7 @@ The above example uses secrets as plain strings. It is recommended to use a secr
|
|||
|--------------------|:--------:|------------|-----|---------|
|
||||
| bucket | Y | Output | The name of the S3 bucket to write to | `"bucket"` |
|
||||
| region | Y | Output | The specific AWS region | `"us-east-1"` |
|
||||
| endpoint | N | Output | The specific AWS endpoint | `"s3-us-east-1.amazonaws.com"` |
|
||||
| accessKey | Y | Output | The AWS Access Key to access this resource | `"key"` |
|
||||
| secretKey | Y | Output | The AWS Secret Access Key to access this resource | `"secretAccessKey"` |
|
||||
| sessionToken | N | Output | The AWS session token to use | `"sessionToken"` |
|
||||
|
@ -139,6 +142,8 @@ spec:
|
|||
value: mybucket
|
||||
- name: region
|
||||
value: us-west-2
|
||||
- name: endpoint
|
||||
value: s3-us-west-2.amazonaws.com
|
||||
- name: accessKey
|
||||
value: *****************
|
||||
- name: secretKey
|
||||
|
|
Loading…
Reference in New Issue