-
Notifications
You must be signed in to change notification settings - Fork 61
/
nvchecker.toml
48 lines (39 loc) · 1.18 KB
/
nvchecker.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[__config__]
oldver = "current_versions.txt"
newver = "new_versions.txt"
# containers
# git grep -E "^\s+image: " *.yaml | grep -v "{{"
[ingress-nginx]
source = "container"
# As of 2023-06-09, nvchecker is not compatible with registry.k8s.io, which
# doesn't return the WWW-Authenticate header that nvchecker expects, so you get
# UnsupportedAuthenticationError.
registry = "k8s.gcr.io"
container = "ingress-nginx/controller"
prefix = "v"
[oauth2-proxy]
source = "container"
registry = "quay.io"
container = "oauth2-proxy/oauth2-proxy"
prefix = "v"
[stackdriver-logging-agent]
source = "container"
registry = "gcr.io"
container = "stackdriver-agents/stackdriver-logging-agent"
# github packages
[cert-manager]
source = "github"
github = "jetstack/cert-manager"
use_latest_release = true
prefix = "v"
# Does find the version, try alternative at the bottom
#[kube-prometheus-stack]
#source = "github"
#github = "prometheus-community/helm-charts"
#path = "charts/kube-prometheus-stack"
#use_max_tag = true
# TODO(ensonic): requires auth token
# use_latest_tag = true
#prefix = "kube-prometheus-stack"
# Cover helm repos:
# https://medium.com/bigdatarepublic/software-versioning-on-kubernetes-806a48480832