Skip to content

Commit af5fd9f

Browse files
committed
Fix definition of helm repo
1 parent 3def49d commit af5fd9f

File tree

2 files changed

+4
-27
lines changed

2 files changed

+4
-27
lines changed

k8s/common.cue

+4-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,10 @@ appName: string
1212

1313
#ChartsRepo: helmrepository.#HelmRepository & {
1414
metadata: name: "netserv-ghcr"
15-
spec: url: "oci://ghcr.io/pythoner6/charts"
15+
spec: {
16+
type: "oci"
17+
url: "oci://ghcr.io/pythoner6/charts"
18+
}
1619
}
1720

1821
c8s.#Default & {

k8s/flux-components/flux.cue

-26
Original file line numberDiff line numberDiff line change
@@ -10,29 +10,3 @@ package netserv
1010
appName: "flux"
1111

1212
kustomizations: components: {}
13-
14-
//fluxResources: {
15-
// oci: ocirepository.#OCIRepository & {
16-
// #Repository
17-
// spec: {
18-
// interval: "1m0s"
19-
// ref: tag: "latest"
20-
// url: "oci://ghcr.io/pythoner6/netserv"
21-
// }
22-
// }
23-
// helm: helmrepository.#HelmRepository & {
24-
// #HelmRepository
25-
// spec: {
26-
// type: "oci"
27-
// url: "oci://ghcr.io/pythoner6/charts"
28-
// }
29-
// }
30-
// "root": kustomization.#Kustomization & {
31-
// spec: {
32-
// path: "./"
33-
// interval: "10m0s"
34-
// prune: true
35-
// sourceRef: #Ref & {_obj: #Repository}
36-
// }
37-
// }
38-
//}

0 commit comments

Comments
 (0)