Skip to content

Commit c9bc09c

Browse files
authored
Merge pull request #3 from axoflow/fix/release
2 parents 0d76c61 + 8a7857b commit c9bc09c

File tree

5 files changed

+13
-12
lines changed

5 files changed

+13
-12
lines changed

.github/workflows/image-build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858

5959
- name: Set image name
6060
id: image-name
61-
run: echo "value=ghcr.io/axoflow/cloudconnectors" >> "$GITHUB_OUTPUT"
61+
run: echo "value=ghcr.io/axoflow/axocloudconnectors" >> "$GITHUB_OUTPUT"
6262

6363
- name: Gather build metadata
6464
id: meta

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This repository houses the cloudconnectors for Axoflow.
44

55
## Quickstart
66

7-
At the moment we don't have a common quickstart guide but you can find guides per connector:
7+
You can find guides per connector:
88

99
- [Azure connector](./connectors/azure/README.md#quickstart)
1010
- [AWS connector](./connectors/aws/README.md#quickstart)

charts/cloudconnectors/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ podAnnotations: {}
2222
# -- image is the container image to use.
2323
image:
2424
# -- Name of the image repository to pull the container image from.
25-
repository: ghcr.io/axoflow/cloudconnectors
25+
repository: ghcr.io/axoflow/axocloudconnectors
2626

2727
# -- Image tag override for the default value (chart appVersion).
2828
tag: ""

connectors/aws/README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
# AWS CloudWatch
22

3-
This directory contains the Axoflow AWS CloudWatch which helps collecting logs from CloudWatch.
3+
This directory contains the Axoflow AWS CloudWatch connector which helps collecting logs from CloudWatch.
44

55
## Quickstart
66

77
Make sure the required environment variables are set before running the connector.
8+
89
There are many ways you can authenticate and use the CloudWatch service:
910

10-
### Using AWS Profile with Config file
11+
### Using AWS Profile with a config file
1112

1213
```bash
1314
docker run --rm \
@@ -16,27 +17,27 @@ docker run --rm \
1617
-e AWS_SDK_LOAD_CONFIG=1 \
1718
-e AXOROUTER_ENDPOINT="${AXOROUTER_ENDPOINT}" \
1819
-v "${HOME}/.aws:/cloudconnectors/.aws:ro" \
19-
ghcr.io/axoflow/cloudconnectors:latest
20+
ghcr.io/axoflow/axocloudconnectors:latest
2021
```
2122

22-
### Direct AWS Credentials
23+
### Direct AWS credentials
2324

2425
```bash
2526
docker run --rm \
2627
-e AWS_ACCESS_KEY_ID="${AWS_ACCESS_KEY_ID}" \
2728
-e AWS_SECRET_ACCESS_KEY="${AWS_SECRET_ACCESS_KEY}" \
2829
-e AWS_REGION="${AWS_REGION}" \
2930
-e AXOROUTER_ENDPOINT="${AXOROUTER_ENDPOINT}" \
30-
ghcr.io/axoflow/cloudconnectors:latest
31+
ghcr.io/axoflow/axocloudconnectors:latest
3132
```
3233

33-
### Using EC2 Instance Profile
34+
### Using EC2 instance profile
3435

3536
```bash
3637
docker run --rm \
3738
-e AWS_REGION="${AWS_REGION}" \
3839
-e AXOROUTER_ENDPOINT="${AXOROUTER_ENDPOINT}" \
39-
ghcr.io/axoflow/cloudconnectors:latest
40+
ghcr.io/axoflow/axocloudconnectors:latest
4041
```
4142

4243
## Deploy with Helm-chart

connectors/azure/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Azure Event Hubs Connector
22

3-
This directory contains the Axoflow Azure Event Hubs Connector which helps collecting logs from Azure Event Hubs.
3+
This directory contains the Axoflow Azure Event Hubs connector which helps collecting logs from Azure Event Hubs.
44

55
## Quickstart
66

@@ -14,7 +14,7 @@ docker run \
1414
-e AZURE_EVENTHUB_CONNECTION_STRING="${AZURE_EVENTHUB_CONNECTION_STRING}" \
1515
-e AXOROUTER_ENDPOINT="${AXOROUTER_ENDPOINT}" \
1616
-e STORAGE_DIRECTORY="${STORAGE_DIRECTORY}" \
17-
ghcr.io/axoflow/cloudconnectors:latest
17+
ghcr.io/axoflow/axocloudconnectors:latest
1818
```
1919

2020
## Deploy with Helm-chart

0 commit comments

Comments
 (0)