Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added documentation for s3_endpoint (#78 / 213e9a8 and #92) #93

Merged
merged 1 commit into from
May 8, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ $ helm install banzaicloud-stable/logging-operator
$ helm install \
--set bucketName='<Mybucket>' \
--set region='<S3_REGION>' \
--set endpoint='<S3_ENDPOINT>' \
--set awsCredentialsAccess.enabled=true \
--set awsCredentialsAccess.secret.awsAccessValue='<AWS_ACCESS_KEY_ID>' \
--set awsCredentialsAccess.secret.awsSecretValue='<AWS_SECRET_ACCESS_KEY>' \
Expand All @@ -96,7 +97,7 @@ banzaicloud-stable/s3-output

> There is **no** need to encode base64 these values.

#### Install Nginx Demo app
#### Install Nginx Demo app
```bash
$ helm install banzaicloud-stable/nginx-logging-demo
```
Expand All @@ -111,7 +112,7 @@ kubectl create -f deploy/crds/logging_v1alpha1_fluentbit_crd.yaml
kubectl create -f deploy/crds/logging_v1alpha1_fluentd_crd.yaml

# If RBAC enabled create the required resources
kubectl create -f deploy/clusterrole.yaml
kubectl create -f deploy/clusterrole.yaml
kubectl create -f deploy/clusterrole_binding.yaml
kubectl create -f deploy/service_account.yaml

Expand Down Expand Up @@ -189,6 +190,8 @@ spec:
value: logging-bucket
- name: s3_region
value: ap-northeast-1
- name: s3_endpoint
value: https://s3.amazonaws.com
```

---
Expand All @@ -211,7 +214,7 @@ $ helm install --name elasticsearch-operator es-operator/elasticsearch-operator
$ helm install --name elasticsearch es-operator/elasticsearch --set kibana.enabled=True --set cerebro.enabled=True
$ helm install --name loggingo banzaicloud-stable/logging-operator
```
> [Elasticsearch Operator Documentation](https://github.com/upmc-enterprises/elasticsearch-operator)
> [Elasticsearch Operator Documentation](https://github.com/upmc-enterprises/elasticsearch-operator)

#### Install Nginx Demo chart
```bash
Expand Down
3 changes: 2 additions & 1 deletion docs/plugins/s3.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
| instance_profile_port | - | |
| aws_key_id | - | |
| aws_sec_key | - | |
| s3_endpoint | - | |
| s3_bucket | - | |
| s3_region | - | |
| s3_object_key_format | %{path}%{time_slice}_%{index}.%{file_extension} | |
Expand Down Expand Up @@ -65,4 +66,4 @@
@type {{ .format }}
</format>
</match>
```
```