Skip to content

Commit d928fe1

Browse files
Merge branch 'main' into docs/user-guide-features
Signed-off-by: Lionel Villard <villard@us.ibm.com>
2 parents 31516a8 + e2c2c15 commit d928fe1

304 files changed

Lines changed: 25130 additions & 13621 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.dockerignore

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# Only go.mod, go.sum, cmd/, api/, internal/, and pkg/ are needed by the Dockerfile.
2+
3+
# Version control and IDE
4+
.git
5+
.gitignore
6+
.gitmodules
7+
.cursor
8+
.claude
9+
*.swp
10+
*.swo
11+
12+
# Dependencies and tools (Go modules are copied explicitly; no need for full tree)
13+
vendor/
14+
15+
# Submodules and sibling repos (not needed for building the manager binary)
16+
sample-data/
17+
llm-d-infra/
18+
# If building from a parent repo that includes llmd or GAIE, add:
19+
# llmd/
20+
# gateway-api-inference-extension/
21+
22+
# Docs, tests, and deployment manifests (not used in the image)
23+
docs/
24+
test/
25+
deploy/
26+
hack/
27+
charts/
28+
config/
29+
30+
# Build artifacts and local binaries
31+
bin/
32+
dist/
33+
*.exe
34+
*.test
35+
coverage.out
36+
coverage.html
37+
38+
# Misc
39+
*.md
40+
.DS_Store
41+
.env
42+
.env.*

.github/aw/github-agentic-workflows.md

Lines changed: 0 additions & 1468 deletions
This file was deleted.

.github/dependabot.yml

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# Dependabot configuration for llm-d-workload-variant-autoscaler
2+
# Based on canonical config from llm-d/llm-d-infra
3+
4+
version: 2
5+
updates:
6+
7+
# Go module updates
8+
- package-ecosystem: "gomod"
9+
directory: "/"
10+
schedule:
11+
interval: "weekly"
12+
open-pull-requests-limit: 10
13+
commit-message:
14+
prefix: "deps(go)"
15+
labels:
16+
- "dependencies"
17+
- "release-note-none"
18+
ignore:
19+
- dependency-name: "go"
20+
update-types: ["version-update:semver-major", "version-update:semver-minor"]
21+
- dependency-name: "k8s.io/*"
22+
update-types: ["version-update:semver-major", "version-update:semver-minor"]
23+
- dependency-name: "sigs.k8s.io/*"
24+
update-types: ["version-update:semver-major", "version-update:semver-minor"]
25+
- dependency-name: "*"
26+
update-types: ["version-update:semver-major"]
27+
groups:
28+
kubernetes:
29+
patterns:
30+
- "k8s.io/*"
31+
- "sigs.k8s.io/*"
32+
go-dependencies:
33+
patterns:
34+
- "*"
35+
36+
# GitHub Actions dependencies
37+
- package-ecosystem: "github-actions"
38+
directory: "/"
39+
schedule:
40+
interval: "weekly"
41+
labels:
42+
- "dependencies"
43+
- "release-note-none"
44+
commit-message:
45+
prefix: "deps(actions)"
46+
47+
# Docker base image updates
48+
- package-ecosystem: "docker"
49+
directory: "/"
50+
schedule:
51+
interval: "weekly"
52+
labels:
53+
- "dependencies"
54+
commit-message:
55+
prefix: "deps(docker)"

.github/workflows/ci-e2e-openshift.yaml

Lines changed: 462 additions & 46 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)