Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions root/templates/cluster-apps.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,13 @@ metadata:
spec:
project: default
source:
repoURL: {{ $clusterForgeRepoUrl }}
targetRevision: {{ $clusterForgeTargetRevision }}
repoURL: {{ .repoURL | default $clusterForgeRepoUrl }}
targetRevision: {{ .repoVersion | default $clusterForgeTargetRevision }}
{{- if .repoURL }}
path: {{ .path }}
{{- else }}
path: sources/{{ .path }}
{{- end }}
{{- if .valuesFile }}
helm:
valueFiles:
Expand Down
2 changes: 1 addition & 1 deletion root/values.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
clusterForge:
repoUrl: "https://github.com/silogen/cluster-forge.git"
targetRevision: v1.7.0 # cluster-forge version git tag
targetRevision: test_v1.7.1-rc2 # cluster-forge version git tag
valuesFile: values.yaml
# source helm values file from separate git repo
externalValues:
Expand Down
2 changes: 1 addition & 1 deletion root/values_cf.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
clusterForge:
repoUrl: "http://gitea-http.cf-gitea.svc:3000/cluster-org/cluster-forge.git"
targetRevision: v1.7.0 # cluster-forge version git tag
targetRevision: test_v1.7.1-rc2 # cluster-forge version git tag
externalValues:
enabled: true
repoUrl: "http://gitea-http.cf-gitea.svc:3000/cluster-org/cluster-values.git"
Expand Down
2 changes: 1 addition & 1 deletion root/values_ha.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
clusterForge:
repoUrl: "http://gitea-http.cf-gitea.svc:3000/cluster-org/cluster-forge.git"
targetRevision: v1.7.0 # cluster-forge version git tag
targetRevision: test_v1.7.1-rc2 # cluster-forge version git tag
externalValues:
enabled: true
repoUrl: "http://gitea-http.cf-gitea.svc:3000/cluster-org/cluster-values.git"
Expand Down
2 changes: 1 addition & 1 deletion sources/amd-gpu-operator/source.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
sourceUrl: https://rocm.github.io/gpu-operator
sourceRepoName: amd-gpu-operator
sourceChartName: gpu-operator-charts
sourceVersion: v1.4.0
sourceVersion: v1.4.1
23 changes: 23 additions & 0 deletions sources/amd-gpu-operator/v1.4.1/.helmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Patterns to ignore when building packages.
# This supports shell glob matching, relative path matching, and
# negation (prefixed with !). Only one pattern per line.
.DS_Store
# Common VCS dirs
.git/
.gitignore
.bzr/
.bzrignore
.hg/
.hgignore
.svn/
# Common backup files
*.swp
*.bak
*.tmp
*.orig
*~
# Various IDEs
.project
.idea/
*.tmproj
.vscode/
9 changes: 9 additions & 0 deletions sources/amd-gpu-operator/v1.4.1/Chart.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
dependencies:
- name: node-feature-discovery
repository: https://kubernetes-sigs.github.io/node-feature-discovery/charts
version: 0.16.1
- name: kmm
repository: file://./charts/kmm
version: v1.0.0
digest: sha256:f9a315dd2ce3d515ebf28c8e9a6a82158b493ca2686439ec381487761261b597
generated: "2025-12-20T03:01:19.870083275Z"
32 changes: 32 additions & 0 deletions sources/amd-gpu-operator/v1.4.1/Chart.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
apiVersion: v2
appVersion: v1.4.1
dependencies:
- condition: node-feature-discovery.enabled
name: node-feature-discovery
repository: https://kubernetes-sigs.github.io/node-feature-discovery/charts
version: v0.16.1
- condition: kmm.enabled
name: kmm
repository: file://./charts/kmm
version: v1.0.0
description: AMD GPU Operator simplifies the deployment and management of AMD Instinct
GPU accelerators within Kubernetes clusters.
home: https://github.com/ROCm/gpu-operator
icon: https://raw.githubusercontent.com/ROCm/k8s-device-plugin/master/helm/logo.png
keywords:
- kubernetes
- cluster
- hardware
- amd
- gpu
- ai
- deep learning
- monitoring
kubeVersion: '>= 1.29.0-0'
maintainers:
- name: Yan Sun <Yan.Sun3@amd.com>
name: gpu-operator-charts
sources:
- https://github.com/ROCm/gpu-operator
type: application
version: v1.4.1
308 changes: 308 additions & 0 deletions sources/amd-gpu-operator/v1.4.1/README.md

Large diffs are not rendered by default.

23 changes: 23 additions & 0 deletions sources/amd-gpu-operator/v1.4.1/charts/kmm/.helmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Patterns to ignore when building packages.
# This supports shell glob matching, relative path matching, and
# negation (prefixed with !). Only one pattern per line.
.DS_Store
# Common VCS dirs
.git/
.gitignore
.bzr/
.bzrignore
.hg/
.hgignore
.svn/
# Common backup files
*.swp
*.bak
*.tmp
*.orig
*~
# Various IDEs
.project
.idea/
*.tmproj
.vscode/
7 changes: 7 additions & 0 deletions sources/amd-gpu-operator/v1.4.1/charts/kmm/Chart.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
apiVersion: v2
appVersion: v20240618-v2.1.1
description: A Helm chart for deploying Kernel Module Management for AMD GPU Operator
kubeVersion: '>= 1.18.0-0'
name: kmm
type: application
version: v1.0.0
Loading