-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathversions.ts
71 lines (67 loc) · 1.67 KB
/
versions.ts
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
// versions.ts
export interface VersionEntry {
version: string;
depName: string;
datasource: string;
versioning: string;
registryUrl?: string;
}
export const versions: Record<string, VersionEntry> = {
juiceCsiDriver: {
version: "0.21.3",
depName: "juicefs-csi-driver",
datasource: "helm",
versioning: "helm",
registryUrl: "https://juicedata.github.io/charts"
},
cilium: {
version: "1.16.5",
depName: "cilium",
datasource: "helm",
versioning: "helm",
registryUrl: "https://helm.cilium.io/"
},
certManager: {
version: "v1.16.2",
depName: "cert-manager",
datasource: "helm",
versioning: "semver-coerced",
registryUrl: "https://charts.jetstack.io"
},
istioBase: {
version: "1.24.2",
depName: "base",
datasource: "helm",
versioning: "helm",
registryUrl: "https://istio-release.storage.googleapis.com/charts"
},
istioD: {
version: "1.24.2",
depName: "istiod",
datasource: "helm",
versioning: "helm",
registryUrl: "https://istio-release.storage.googleapis.com/charts"
},
hcloudCSI: {
version: "2.11.0",
depName: "hcloud-csi",
datasource: "helm",
versioning: "helm",
registryUrl: "https://charts.hetzner.cloud/"
},
externalSecrets: {
version: "0.12.1",
depName: "external-secrets",
datasource: "helm",
versioning: "semver-coerced",
registryUrl: "https://charts.external-secrets.io"
},
pulumiOperator: {
version: "0.8.1",
depName: "pulumi-kubernetes-operator",
datasource: "helm",
versioning: "semver-coerced",
registryUrl: "oci://ghcr.io/pulumi/helm-charts/pulumi-kubernetes-operator"
},
};
export default versions;