Skip to content

Commit ba8020a

Browse files
Merge pull request #120 from VaishnaviHire/sync_rhoai_3.4
Sync upstream for release 3.4
2 parents a5d32a8 + 19c9af5 commit ba8020a

28 files changed

Lines changed: 1312 additions & 512 deletions

.github/workflows/code-coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1414

1515
- name: Set up Go
16-
uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
16+
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
1717
with:
1818
go-version-file: go.mod
1919

.github/workflows/generate-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
fi
9999
100100
- name: Set up Go
101-
uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 #v 6.3.0
101+
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c #v 6.4.0
102102
with:
103103
go-version-file: go.mod
104104

@@ -223,7 +223,7 @@ jobs:
223223
ref: ${{ env.release_branch }}
224224

225225
- name: Set up Go
226-
uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
226+
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
227227
with:
228228
go-version-file: go.mod
229229

.github/workflows/pre-commit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1919

2020
- name: Set up Go env
21-
uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
21+
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
2222
with:
2323
go-version-file: go.mod
2424

.github/workflows/release-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
runs-on: ${{ matrix.runner }}
3535
steps:
3636
- name: Set up Go
37-
uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
37+
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
3838
with:
3939
go-version-file: go.mod
4040

.github/workflows/run-e2e-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2929

3030
- name: Set up Go
31-
uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
31+
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
3232
with:
3333
go-version-file: go.mod
3434

Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ ARG TARGETPLATFORM
1313
# For native builds: CGO_ENABLED=1 with full FIPS OpenSSL support
1414
# For cross-builds: CGO_ENABLED=0 with pure Go FIPS (strictfipsruntime)
1515
ENV GOEXPERIMENT=strictfipsruntime
16+
ENV GOTOOLCHAIN=auto
1617

1718
WORKDIR /workspace
1819
# Copy the Go Modules manifests

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ vet: ## Run go vet against code.
141141

142142
.PHONY: test
143143
test: manifests generate fmt vet envtest ## Run tests. Use TEST_PKGS and TEST_FLAGS to customize.
144-
GOTOOLCHAIN=go1.25.5+auto KUBEBUILDER_ASSETS="$(shell $(ENVTEST) use $(ENVTEST_K8S_VERSION) --bin-dir $(LOCALBIN) -p path)" go test $(TEST_PKGS) $(TEST_FLAGS)
144+
GOTOOLCHAIN=go1.25.8+auto KUBEBUILDER_ASSETS="$(shell $(ENVTEST) use $(ENVTEST_K8S_VERSION) --bin-dir $(LOCALBIN) -p path)" go test $(TEST_PKGS) $(TEST_FLAGS)
145145

146146
.PHONY: test-e2e
147147
test-e2e: ## Run e2e tests

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,10 @@ spec:
9494
```
9595
3. Verify the server pod is running in the user defined namespace.
9696

97+
### Local Vector Storage (inline::milvus)
98+
99+
To enable the `inline::milvus` local vector storage provider, set `ENABLE_INLINE_MILVUS` in `spec.server.containerSpec.env`. This is only supported in single-worker, single-replica deployments. Milvus-Lite uses SQLite internally and does not support concurrent access from multiple processes.
100+
97101
### Using a ConfigMap for config.yaml configuration
98102

99103
A ConfigMap can be used to store config.yaml configuration for each LlamaStackDistribution.

config/component_metadata.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
releases:
22
- name: Llama Stack
3-
version: v0.6.0
3+
version: v0.7.1
44
repoUrl: https://github.com/opendatahub-io/llama-stack-distribution
55
- name: Llama Stack Operator
6-
version: v0.8.0
6+
version: v0.9.0
77
repoUrl: https://github.com/opendatahub-io/llama-stack-k8s-operator

config/manager/manager.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@ spec:
5252
args:
5353
- --leader-elect
5454
env:
55+
- name: GOMEMLIMIT
56+
value: "800MiB"
5557
- name: OPERATOR_VERSION
5658
value: "latest"
5759
- name: RELATED_IMAGE_RH_DISTRIBUTION

0 commit comments

Comments
 (0)