Skip to content

Commit

Permalink
Add a few things to make linter happy
Browse files Browse the repository at this point in the history
  • Loading branch information
tayterz2 committed Jan 18, 2025
1 parent 8bf754d commit 1724637
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 18 deletions.
5 changes: 5 additions & 0 deletions charts/hauler/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,8 @@ icon: https://raw.githubusercontent.com/hauler-dev/hauler/main/static/rgs-hauler
name: hauler-helm
type: application
version: 1.2.0
maintainers:
- name: zackbradys
email: [email protected]
- name: tayterz2
email: [email protected]
36 changes: 18 additions & 18 deletions charts/hauler/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ hauler:
initContainers:
image:
repository: rancher/kubectl
tag: v1.31.3 # update to your kubernetes version
tag: v1.31.3 # update to your kubernetes version
imagePullPolicy: Always
timeout: 1h

data:
pvc:
accessModes: ReadWriteMany
# storageClass: longhorn # optional... will use default storage class
storageRequest: 48Gi # recommended size of 3x the artifact(s)
storageRequest: 48Gi # recommended size of 3x the artifact(s)

# Helm Chart Values for the Hauler Jobs
# Docs: https://rancherfederal.github.io/hauler-docs/docs/introduction/quickstart
Expand All @@ -35,75 +35,75 @@ haulerJobs:
# "remote" refers to URL-based hauler artifacts and/or manifests
remote:
artifacts:
#- path: https://raw.githubusercontent.com/hauler-dev/hauler/main/testdata/haul.tar.zst
# - path: https://raw.githubusercontent.com/hauler-dev/hauler/main/testdata/haul.tar.zst
# name: remhaul.tar.zst
# - path: /path/to/additional-hauls.tar.zst
# name: additional-hauls.tar.zst
manifests:
#- path: https://raw.githubusercontent.com/hauler-dev/hauler/main/testdata/hauler-manifest.yaml
# - path: https://raw.githubusercontent.com/hauler-dev/hauler/main/testdata/hauler-manifest.yaml
# name: remhauler-manifest.yaml
# - path: /path/to/additional-manifests.yaml
# name: additional-manifests.yaml
# "local" refers to the host the container/kubectl is being run on. Use filesystem paths (hostDir) for these values.
local:
artifacts:
#- path: /usr/local/testdata/haul.tar.zst
# - path: /usr/local/testdata/haul.tar.zst
# name: haul.tar.zst
# - path: /path/to/additional-hauls.tar.zst
# name: additional-hauls.tar.zst
manifests:
#- path: /usr/local/testdata/hauler-manifest.yaml
# - path: /usr/local/testdata/hauler-manifest.yaml
# name: hauler-manifest.yaml
# - path: /path/to/additional-manifests.yaml
# name: additional-manifests.yaml
# "store" refers to a previously created hauler folder structure. See the "-s" argument to hauler. Only one path is acceptable
#store: /my/previously/created/hauler/store/dir/
# "store" refers to a previously created hauler folder structure. See the "-s" argument to hauler. Only one path is acceptable
# store: /my/previously/created/hauler/store/dir/

# Helm Chart Values for the Hauler Fileserver
# Docs: https://rancherfederal.github.io/hauler-docs/docs/guides-references/command-line/hauler-store#hauler-store-serve-fileserver
#

haulerFileserver:
enabled: true
port: 8080 # default port for the fileserver
port: 8080 # default port for the fileserver
replicas: 1

ingress:
enabled: true
hostname: fileserver.ranchers.io
tls:
enabled: true
source: secret # only supported source
secretName: tls-certs # must be created outside of this chart
source: secret # only supported source
secretName: tls-certs # must be created outside of this chart

service:
enabled: true
type: ClusterIP
ports:
protocol: TCP
port: 8080 # default port for the fileserver
targetPort: 8080 # default port for the fileserver
port: 8080 # default port for the fileserver
targetPort: 8080 # default port for the fileserver

# Helm Chart Values for the Hauler Registry
# Docs: https://rancherfederal.github.io/hauler-docs/docs/guides-references/command-line/hauler-store#hauler-store-serve-registry

haulerRegistry:
enabled: true
port: 5000 # default port for the registry
port: 5000 # default port for the registry
replicas: 1

ingress:
enabled: true
hostname: registry.ranchers.io
tls:
enabled: true
source: secret # only supported source
secretName: tls-certs # must be created outside of this chart
source: secret # only supported source
secretName: tls-certs # must be created outside of this chart

service:
enabled: true
type: ClusterIP
ports:
protocol: TCP
port: 5000 # default port for the registry
targetPort: 5000 # default port for the registry
port: 5000 # default port for the registry
targetPort: 5000 # default port for the registry

0 comments on commit 1724637

Please sign in to comment.