mirror of
https://github.com/fluxcd/flux2.git
synced 2026-04-23 03:48:50 +00:00
Add OCI support to create source helm
closes #2774 Signed-off-by: Max Jonas Werner <mail@makk.es>
This commit is contained in:
parent
bcef28e80b
commit
e19ea796b1
9 changed files with 150 additions and 10 deletions
10
cmd/flux/testdata/create_source_helm/https.golden
vendored
Normal file
10
cmd/flux/testdata/create_source_helm/https.golden
vendored
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
---
|
||||
apiVersion: source.toolkit.fluxcd.io/v1beta2
|
||||
kind: HelmRepository
|
||||
metadata:
|
||||
name: podinfo
|
||||
namespace: {{ .fluxns }}
|
||||
spec:
|
||||
interval: 5m0s
|
||||
url: https://stefanprodan.github.io/charts/podinfo
|
||||
|
||||
13
cmd/flux/testdata/create_source_helm/oci-with-secret.golden
vendored
Normal file
13
cmd/flux/testdata/create_source_helm/oci-with-secret.golden
vendored
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
---
|
||||
apiVersion: source.toolkit.fluxcd.io/v1beta2
|
||||
kind: HelmRepository
|
||||
metadata:
|
||||
name: podinfo
|
||||
namespace: {{ .fluxns }}
|
||||
spec:
|
||||
interval: 5m0s
|
||||
secretRef:
|
||||
name: creds
|
||||
type: oci
|
||||
url: oci://ghcr.io/stefanprodan/charts/podinfo
|
||||
|
||||
11
cmd/flux/testdata/create_source_helm/oci.golden
vendored
Normal file
11
cmd/flux/testdata/create_source_helm/oci.golden
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
---
|
||||
apiVersion: source.toolkit.fluxcd.io/v1beta2
|
||||
kind: HelmRepository
|
||||
metadata:
|
||||
name: podinfo
|
||||
namespace: {{ .fluxns }}
|
||||
spec:
|
||||
interval: 5m0s
|
||||
type: oci
|
||||
url: oci://ghcr.io/stefanprodan/charts/podinfo
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue