We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37d5a41 commit cb75d9aCopy full SHA for cb75d9a
1 file changed
utilities/llmd_utils.py
@@ -19,6 +19,7 @@
19
from utilities.exceptions import InferenceResponseError
20
from utilities.infra import get_services_by_isvc_label
21
from utilities.llmd_constants import (
22
+ ContainerImages,
23
LLMDGateway,
24
LLMEndpoint,
25
KServeGateway,
@@ -248,6 +249,12 @@ def create_llmisvc(
248
249
250
if container_env is None:
251
container_env = [{"name": "VLLM_LOGGING_LEVEL", "value": "DEBUG"}]
252
+ # Add FIPS-compatible env vars for vLLM CPU image
253
+ if container_image == ContainerImages.VLLM_CPU:
254
+ container_env.extend([
255
+ {"name": "VLLM_ADDITIONAL_ARGS", "value": "--ssl-ciphers ECDHE+AESGCM:DHE+AESGCM"},
256
+ {"name": "VLLM_CPU_KVCACHE_SPACE", "value": "4"},
257
+ ])
258
template_config: Dict[str, Any] = {"configRef": config_refs["template_ref"]}
259
260
if any([
0 commit comments