File tree Expand file tree Collapse file tree 4 files changed +10
-10
lines changed
charts/cloudflare-exporter Expand file tree Collapse file tree 4 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -102,36 +102,36 @@ helm install cloudflare-exporter/cloudflare-exporter
102
102
103
103
## Docker
104
104
### Build
105
- Images are available at [ Dockerhub ] ( https://hub.docker. com/r/ lablabs/cloudflare_exporter )
105
+ Images are available at [ Github Container Registry ] ( https://github. com/lablabs/cloudflare-exporter/pkgs/container /cloudflare_exporter )
106
106
107
107
```
108
- docker build -t lablabs/cloudflare_exporter .
108
+ docker build -t ghcr.io/ lablabs/cloudflare_exporter .
109
109
```
110
110
111
111
### Run
112
112
Authenticating with email + API key:
113
113
```
114
- docker run --rm -p 8080:8080 -e CF_API_KEY=${CF_API_KEY} -e CF_API_EMAIL=${CF_API_EMAIL} lablabs/cloudflare_exporter
114
+ docker run --rm -p 8080:8080 -e CF_API_KEY=${CF_API_KEY} -e CF_API_EMAIL=${CF_API_EMAIL} ghcr.io/ lablabs/cloudflare_exporter
115
115
```
116
116
117
117
API token:
118
118
```
119
- docker run --rm -p 8080:8080 -e CF_API_TOKEN=${CF_API_TOKEN} lablabs/cloudflare_exporter
119
+ docker run --rm -p 8080:8080 -e CF_API_TOKEN=${CF_API_TOKEN} ghcr.io/ lablabs/cloudflare_exporter
120
120
```
121
121
122
122
Configure zones and listening port:
123
123
```
124
- docker run --rm -p 8080:8081 -e CF_API_TOKEN=${CF_API_TOKEN} -e CF_ZONES=zoneid1,zoneid2,zoneid3 -e LISTEN=:8081 lablabs/cloudflare_exporter
124
+ docker run --rm -p 8080:8081 -e CF_API_TOKEN=${CF_API_TOKEN} -e CF_ZONES=zoneid1,zoneid2,zoneid3 -e LISTEN=:8081 ghcr.io/ lablabs/cloudflare_exporter
125
125
```
126
126
127
127
Disable non-free metrics:
128
128
```
129
- docker run --rm -p 8080:8080 -e CF_API_TOKEN=${CF_API_TOKEN} -e FREE_TIER=true lablabs/cloudflare_exporter
129
+ docker run --rm -p 8080:8080 -e CF_API_TOKEN=${CF_API_TOKEN} -e FREE_TIER=true ghcr.io/ lablabs/cloudflare_exporter
130
130
```
131
131
132
132
Access help:
133
133
```
134
- docker run --rm -p 8080:8080 -i lablabs/cloudflare_exporter --help
134
+ docker run --rm -p 8080:8080 -i ghcr.io/ lablabs/cloudflare_exporter --help
135
135
```
136
136
137
137
## Contributing and reporting issues
Original file line number Diff line number Diff line change 1
1
apiVersion : v2
2
2
name : cloudflare-exporter
3
- version : 0.1.7
3
+ version : 0.1.8
4
4
appVersion : 0.0.9
5
5
home : https://github.com/lablabs/cloudflare-exporter
6
6
description : A Helm chart for cloudflare exporter
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ The following table lists the configurable parameters of the Cloudflare-exporter
18
18
| Parameter | Description | Default |
19
19
| ------------------------ | ----------------------- | -------------- |
20
20
| ` replicaCount ` | | ` 1 ` |
21
- | ` image.repository ` | | ` "lablabs/cloudflare_exporter" ` |
21
+ | ` image.repository ` | | ` "ghcr.io/ lablabs/cloudflare_exporter" ` |
22
22
| ` image.pullPolicy ` | | ` "Always" ` |
23
23
| ` image.tag ` | | ` "0.0.2" ` |
24
24
| ` env ` | | ` [] ` |
Original file line number Diff line number Diff line change 5
5
replicaCount : 1
6
6
7
7
image :
8
- repository : lablabs/cloudflare_exporter
8
+ repository : ghcr.io/ lablabs/cloudflare_exporter
9
9
pullPolicy : Always
10
10
# Overrides the image tag whose default is the chart appVersion.
11
11
# tag: latest
You can’t perform that action at this time.
0 commit comments