Skip to content

Commit c3bb240

Browse files
authored
[Fix] Move pdb from patch to resources (#1117)
Signed-off-by: Jiaxin Shan <[email protected]>
1 parent 6528c8e commit c3bb240

File tree

5 files changed

+14
-13
lines changed

5 files changed

+14
-13
lines changed

config/overlays/release/gateway_plugins_patch.yaml

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,4 @@ spec:
3939
value: "16"
4040
- name: AIBRIX_PREFIX_CACHE_STANDARD_DEVIATION_FACTOR
4141
value: "2"
42-
---
43-
apiVersion: policy/v1
44-
kind: PodDisruptionBudget
45-
metadata:
46-
name: gateway-plugins-pdb
47-
namespace: aibrix-system
48-
spec:
49-
minAvailable: 1
50-
selector:
51-
matchLabels:
52-
app: gateway-plugins
42+

config/overlays/release/kustomization.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ kind: Kustomization
55

66
resources:
77
- ../../default
8+
- pdb.yaml
89

910
patches:
1011
- path: envoy_proxy_patch.yaml

config/overlays/release/pdb.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
apiVersion: policy/v1
2+
kind: PodDisruptionBudget
3+
metadata:
4+
name: gateway-plugins-pdb
5+
namespace: aibrix-system
6+
spec:
7+
minAvailable: 1
8+
selector:
9+
matchLabels:
10+
app: gateway-plugins

python/aibrix/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "aibrix"
3-
version = "0.3.0rc2"
3+
version = "0.3.0rc2.post1"
44
description = "AIBrix, the foundational building blocks for constructing your own GenAI inference infrastructure."
55
authors = [
66
"AIBrix Authors <[email protected]>"

python/aibrix_kvcache/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "aibrix-kvcache"
3-
version = "0.3.0rc2"
3+
version = "0.3.0rc2.post1"
44
description = "AIBrix KV Cache offloading framework for cross-engine KV reuse"
55
authors = [{name = "AIBrix Team"}]
66
license = "Apache-2.0"

0 commit comments

Comments
 (0)