Skip to content

Commit beaeda1

Browse files
authored
Merge pull request #1614 from prometheus-community/superq/fixup_container_urls
Update container repositories
2 parents 292db29 + 75bcb89 commit beaeda1

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# YACE - yet another cloudwatch exporter
22

3+
[![Container on Quay](https://quay.io/repository/prometheuscommunity/yet-another-cloudwatch-exporter/status)][quay]
4+
[![Container on Docker Hub](https://img.shields.io/docker/pulls/prometheuscommunity/yet-another-cloudwatch-exporter.svg?maxAge=604800)][docker]
5+
36
YACE, or `yet another cloudwatch exporter`, is a [Prometheus exporter](https://prometheus.io/docs/instrumenting/exporters/#exporters-and-integrations) for [AWS CloudWatch](http://aws.amazon.com/cloudwatch/) metrics. It is written in Go and uses the official AWS SDK.
47

58
## News
@@ -293,7 +296,7 @@ predict_linear(aws_es_free_storage_space_minimum[2d], 86400 * 7) + on (name) gro
293296
to support local testing all AWS urls can be overridden with by setting an environment variable `AWS_ENDPOINT_URL`
294297
```shell
295298
docker run -d --rm -v $PWD/credentials:/exporter/.aws/credentials -v $PWD/config.yml:/tmp/config.yml \
296-
-e AWS_ENDPOINT_URL=http://localhost:4766 -p 5000:5000 --name yace ghcr.io/nerdswords/yet-another-cloudwatch-exporter:vx.xx.x # release version as tag - Do not forget the version 'v'
299+
-e AWS_ENDPOINT_URL=http://localhost:4766 -p 5000:5000 --name yace quay.io/prometheuscommunity/yet-another-cloudwatch-exporter:latest
297300
```
298301

299302
## Options
@@ -365,3 +368,6 @@ go without losing data. ELB metrics on AWS are written every 5 minutes (300) in
365368
366369
* [Justin Santa Barbara](https://github.com/justinsb) - For telling me about AWS tags api which simplified a lot - Thanks!
367370
* [Brian Brazil](https://github.com/brian-brazil) - Who gave a lot of feedback regarding UX and prometheus lib - Thanks!
371+
372+
[quay]: https://quay.io/repository/prometheuscommunity/yet-another-cloudwatch-exporter
373+
[docker]: https://hub.docker.com/r/prometheuscommunity/yet-another-cloudwatch-exporter

docs/installation.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ See the [Releases](https://github.com/prometheus-community/yet-another-cloudwatc
1010

1111
Docker images are available on GitHub Container Registry [here](https://github.com/prometheus-community/yet-another-cloudwatch-exporter/pkgs/container/yet-another-cloudwatch-exporter).
1212

13-
The image name is `ghcr.io/nerdswords/yet-another-cloudwatch-exporter` and we only support tags of the form `vX.Y.Z`.
13+
The image name is `quay.io/prometheuscommunity/yet-another-cloudwatch-exporter` and we support tags of the form `vX.Y.Z`.
1414

1515
To pull and run the image locally use:
1616

@@ -19,7 +19,7 @@ docker run -d --rm \
1919
-v $PWD/credentials:/exporter/.aws/credentials \
2020
-v $PWD/config.yml:/tmp/config.yml \
2121
-p 5000:5000 \
22-
--name yace ghcr.io/nerdswords/yet-another-cloudwatch-exporter:vX.Y.Z
22+
--name yace quay.io/prometheuscommunity/yet-another-cloudwatch-exporter:latest
2323
```
2424

2525
Do not forget the `v` prefix in the image version tag.
@@ -65,7 +65,7 @@ spec:
6565
spec:
6666
containers:
6767
- name: yace
68-
image: ghcr.io/nerdswords/yet-another-cloudwatch-exporter:vX.Y.Z # release version as tag - Do not forget the version 'v'
68+
image: quay.io/prometheuscommunity/yet-another-cloudwatch-exporter:vX.Y.Z # release version as tag - Do not forget the version 'v'
6969
imagePullPolicy: IfNotPresent
7070
args:
7171
- "--config.file=/tmp/config.yml"

0 commit comments

Comments
 (0)