Skip to content
Open
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
9 changes: 9 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
* text=auto eol=lf
*.png -text
*.jpg -text
*.jpeg -text
*.gif -text
*.webp -text
*.pdf -text
*.zip -text
backend/crater -text
44 changes: 44 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -79,3 +79,47 @@ kubeconfig*

# Claude Code
.claude/
storage/etc/config.yaml
.gocache/
.gomodcache/

# Local build/test scratch
.gocache*/
.gotmp*/
backend/crater

# Python cache
__pycache__/
*.pyc
*.pyo

# Temporary experiment artifacts
tmp_*
rewrite_section3*.py
storage-governance-datasets.zip
storage-governance-qwen25-7b.zip

# Editor/tool backup files with random numeric suffixes
*.go.[0-9]*

# Local workspace-only directories and assets
/.claude/
/.gocache-test/
/.gopath/
/_external/
/datasets/
/models/
/models_compare/
/offline-tools/
/offline-tools.zip
/graduation-thesis-latex/

# Local document/build logs
/texput.log

# Local documentation drafts
/docs/zh-CN/framework-architecture-and-workflow.md
/docs/zh-CN/storage-governance-requirements/
/docs/zh-CN/storage-management.md
/docs/zh-CN/storage-metadata-index-policy-engine.md
/docs/zh-CN/storage-tiering-policy-satisfier.md
1 change: 1 addition & 0 deletions backend/cmd/crater/helper/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ func (ci *ConfigInitializer) SetupManagerDependencies(registerConfig *handler.Re
registerConfig.CronJobManager = cronjob.NewCronJobManager(
registerConfig.Client,
registerConfig.KubeClient,
registerConfig.KubeConfig,
registerConfig.PrometheusClient,
registerConfig.GpuAnalysisService,
registerConfig.BillingService,
Expand Down
Loading
Loading