mirror of
https://github.com/hauler-dev/hauler.git
synced 2026-08-24 11:47:20 +00:00
57 lines
1.7 KiB
YAML
57 lines
1.7 KiB
YAML
apiVersion: content.hauler.cattle.io/v1alpha1
|
|
kind: Files
|
|
metadata:
|
|
name: myfile
|
|
spec:
|
|
files:
|
|
# hauler can save/redistribute files on disk (be careful! paths are relative)
|
|
- path: testdata/contents.yaml
|
|
|
|
# when directories are specified, the directory contents will be archived and stored
|
|
- path: testdata/
|
|
|
|
# hauler can also fetch remote content, and will "smartly" identify filenames _when possible_
|
|
# filename below = "k3s-images.txt"
|
|
- path: "https://github.com/k3s-io/k3s/releases/download/v1.22.2%2Bk3s2/k3s-images.txt"
|
|
|
|
# when discovered filenames are not desired, a file name can be specified
|
|
- path: https://get.k3s.io
|
|
name: k3s-init.sh
|
|
|
|
---
|
|
apiVersion: content.hauler.cattle.io/v1alpha1
|
|
kind: Images
|
|
metadata:
|
|
name: myimage
|
|
spec:
|
|
images:
|
|
# images can be referenced shorthanded without a tag
|
|
- name: hello-world
|
|
|
|
# or namespaced with a tag
|
|
- name: rancher/cowsay:latest
|
|
|
|
# or by their digest:
|
|
- name: registry@sha256:42043edfae481178f07aa077fa872fcc242e276d302f4ac2026d9d2eb65b955f
|
|
|
|
# or fully qualified from any OCI compliant registry registry
|
|
- name: ghcr.io/fluxcd/flux-cli:v0.22.0
|
|
|
|
---
|
|
apiVersion: content.hauler.cattle.io/v1alpha1
|
|
kind: Charts
|
|
metadata:
|
|
name: mychart
|
|
spec:
|
|
charts:
|
|
# charts are also fetched and served as OCI content (currently experimental in helm)
|
|
# HELM_EXPERIMENTAL_OCI=1 helm chart pull <hauler-registry>/loki:2.6.2
|
|
- name: loki
|
|
repoURL: https://grafana.github.io/helm-charts
|
|
# version: latest # the latest version will be used when version is empty
|
|
|
|
# specific versions can also be used
|
|
- name: rancher
|
|
repoURL: https://releases.rancher.com/server-charts/latest
|
|
version: 2.6.2
|