From 9381b071d8a81aac4a76da87bc39d15ba980882b Mon Sep 17 00:00:00 2001 From: Ning Wang Date: Sun, 15 Dec 2024 21:13:21 -0800 Subject: [PATCH 1/4] gpu-optimizer-testing --- Makefile | 2 +- config/overlays/vke/default/gateway/envoyproxy.yaml | 2 +- config/overlays/vke/default/kustomization.yaml | 12 ++++++------ development/app/config/vke/kustomization.yaml | 8 ++++++++ 4 files changed, 16 insertions(+), 8 deletions(-) create mode 100644 development/app/config/vke/kustomization.yaml diff --git a/Makefile b/Makefile index 3294e749..4c1f940e 100644 --- a/Makefile +++ b/Makefile @@ -228,7 +228,7 @@ undeploy: kustomize ## Undeploy controller from the K8s cluster specified in ~/. .PHONY: install-vke install-vke: manifests kustomize ## Install CRDs into the K8s cluster specified in ~/.kube/config. - $(KUSTOMIZE) build config/crd | $(KUBECTL) apply -f - +# $(KUSTOMIZE) build config/crd | $(KUBECTL) apply -f - ## helm creates objects without aibrix prefix, hence deploying gateway components outside of kustomization $(KUBECTL) create -k config/overlays/vke/dependency diff --git a/config/overlays/vke/default/gateway/envoyproxy.yaml b/config/overlays/vke/default/gateway/envoyproxy.yaml index 0ddd9b83..4c0bb472 100644 --- a/config/overlays/vke/default/gateway/envoyproxy.yaml +++ b/config/overlays/vke/default/gateway/envoyproxy.yaml @@ -1,7 +1,7 @@ apiVersion: gateway.envoyproxy.io/v1alpha1 kind: EnvoyProxy metadata: - name: custom-proxy-config + name: aibrix-custom-proxy-config namespace: aibrix-system spec: provider: diff --git a/config/overlays/vke/default/kustomization.yaml b/config/overlays/vke/default/kustomization.yaml index 89e16a2e..5bdcbda7 100644 --- a/config/overlays/vke/default/kustomization.yaml +++ b/config/overlays/vke/default/kustomization.yaml @@ -23,14 +23,14 @@ images: newTag: latest - name: aibrix/plugins newName: aibrix-container-registry-cn-beijing.cr.volces.com/aibrix/plugins - newTag: v0.1.1 + newTag: v0.2.0-test - name: aibrix/users newName: aibrix-container-registry-cn-beijing.cr.volces.com/aibrix/users - newTag: v0.1.1 + newTag: v0.2.0-test - name: aibrix/controller-manager newName: aibrix-container-registry-cn-beijing.cr.volces.com/aibrix/controller-manager - newTag: v0.1.1 -- name: aibrix/gpu-optimizer - newName: aibrix-container-registry-cn-beijing.cr.volces.com/aibrix/gpu-optimizer + newTag: v0.2.0-test +- name: aibrix/runtime + newName: aibrix-container-registry-cn-beijing.cr.volces.com/aibrix/runtime # not release yet. - newTag: nightly \ No newline at end of file + newTag: v0.2.0-test \ No newline at end of file diff --git a/development/app/config/vke/kustomization.yaml b/development/app/config/vke/kustomization.yaml new file mode 100644 index 00000000..2f862d48 --- /dev/null +++ b/development/app/config/vke/kustomization.yaml @@ -0,0 +1,8 @@ +resources: + - ../mock + - ../templates/podautoscaler + +images: +- name: aibrix/vllm-mock + newName: aibrix-container-registry-cn-beijing.cr.volces.com/aibrix/vllm-mock + newTag: nightly From 457eb1c2b9f36d3635fd7ed73bf6ff69b000a727 Mon Sep 17 00:00:00 2001 From: Ning Wang Date: Mon, 16 Dec 2024 17:36:06 -0800 Subject: [PATCH 2/4] remove ipv6 config and add vke-ipv4 config --- Makefile | 2 +- .../vke-ipv4/default/gateway/envoyproxy.yaml | 26 ++++++++++++++ .../default/gateway/gateway_patch.yaml | 12 +++++++ .../default/gateway/kustomization.yaml | 3 ++ .../vke-ipv4/default/kustomization.yaml | 36 +++++++++++++++++++ .../envoy-gateway/envoy_config_patch.yaml | 18 ++++++++++ .../envoy-gateway/kustomization.yaml | 10 ++++++ .../vke-ipv4/dependency/kustomization.yaml | 4 +++ .../overlays/vke/default/kustomization.yaml | 12 +++---- 9 files changed, 116 insertions(+), 7 deletions(-) create mode 100644 config/overlays/vke-ipv4/default/gateway/envoyproxy.yaml create mode 100644 config/overlays/vke-ipv4/default/gateway/gateway_patch.yaml create mode 100644 config/overlays/vke-ipv4/default/gateway/kustomization.yaml create mode 100644 config/overlays/vke-ipv4/default/kustomization.yaml create mode 100644 config/overlays/vke-ipv4/dependency/envoy-gateway/envoy_config_patch.yaml create mode 100644 config/overlays/vke-ipv4/dependency/envoy-gateway/kustomization.yaml create mode 100644 config/overlays/vke-ipv4/dependency/kustomization.yaml diff --git a/Makefile b/Makefile index 4c1f940e..3294e749 100644 --- a/Makefile +++ b/Makefile @@ -228,7 +228,7 @@ undeploy: kustomize ## Undeploy controller from the K8s cluster specified in ~/. .PHONY: install-vke install-vke: manifests kustomize ## Install CRDs into the K8s cluster specified in ~/.kube/config. -# $(KUSTOMIZE) build config/crd | $(KUBECTL) apply -f - + $(KUSTOMIZE) build config/crd | $(KUBECTL) apply -f - ## helm creates objects without aibrix prefix, hence deploying gateway components outside of kustomization $(KUBECTL) create -k config/overlays/vke/dependency diff --git a/config/overlays/vke-ipv4/default/gateway/envoyproxy.yaml b/config/overlays/vke-ipv4/default/gateway/envoyproxy.yaml new file mode 100644 index 00000000..b97c9c26 --- /dev/null +++ b/config/overlays/vke-ipv4/default/gateway/envoyproxy.yaml @@ -0,0 +1,26 @@ +apiVersion: gateway.envoyproxy.io/v1alpha1 +kind: EnvoyProxy +metadata: + name: aibrix-custom-proxy-config + namespace: aibrix-system +spec: + provider: + type: Kubernetes + kubernetes: + envoyService: + patch: + type: StrategicMerge + value: + metadata: + annotations: + service.beta.kubernetes.io/volcengine-loadbalancer-address-type: "PRIVATE" + spec: + ipFamilies: + - IPv4 # Remove IPv6 + ipFamilyPolicy: SingleStack # Changed from PreferDualStack to SingleStack since VKE does not support ipv6 + envoyDeployment: + pod: + annotations: + vci.vke.volcengine.com/pod-ip-family: dualstack + container: + image: aibrix-container-registry-cn-beijing.cr.volces.com/envoyproxy/envoy:distroless-v1.31.0 \ No newline at end of file diff --git a/config/overlays/vke-ipv4/default/gateway/gateway_patch.yaml b/config/overlays/vke-ipv4/default/gateway/gateway_patch.yaml new file mode 100644 index 00000000..b4dc44b4 --- /dev/null +++ b/config/overlays/vke-ipv4/default/gateway/gateway_patch.yaml @@ -0,0 +1,12 @@ +apiVersion: gateway.networking.k8s.io/v1 +kind: Gateway +metadata: + name: eg + namespace: aibrix-system +spec: + gatewayClassName: aibrix-eg + infrastructure: + parametersRef: + group: gateway.envoyproxy.io + kind: EnvoyProxy + name: aibrix-custom-proxy-config \ No newline at end of file diff --git a/config/overlays/vke-ipv4/default/gateway/kustomization.yaml b/config/overlays/vke-ipv4/default/gateway/kustomization.yaml new file mode 100644 index 00000000..6e4df8c2 --- /dev/null +++ b/config/overlays/vke-ipv4/default/gateway/kustomization.yaml @@ -0,0 +1,3 @@ +resources: + - ../../../../gateway + - envoyproxy.yaml diff --git a/config/overlays/vke-ipv4/default/kustomization.yaml b/config/overlays/vke-ipv4/default/kustomization.yaml new file mode 100644 index 00000000..5bdcbda7 --- /dev/null +++ b/config/overlays/vke-ipv4/default/kustomization.yaml @@ -0,0 +1,36 @@ +apiVersion: kustomize.config.k8s.io/v1beta1 +kind: Kustomization + +resources: +- ../../../default +- gateway/envoyproxy.yaml + +patches: + - path: gateway/gateway_patch.yaml + +images: +- name: quay.io/kuberay/operator + newName: aibrix-container-registry-cn-beijing.cr.volces.com/aibrix/kuberay-operator + newTag: v1.2.1-patch +- name: envoyproxy/envoy + newName: aibrix-container-registry-cn-beijing.cr.volces.com/envoyproxy/envoy + newTag: distroless-v1.31.0 +- name: busybox + newName: aibrix-container-registry-cn-beijing.cr.volces.com/aibrix/busybox + newTag: stable +- name: redis + newName: aibrix-container-registry-cn-beijing.cr.volces.com/aibrix/redis + newTag: latest +- name: aibrix/plugins + newName: aibrix-container-registry-cn-beijing.cr.volces.com/aibrix/plugins + newTag: v0.2.0-test +- name: aibrix/users + newName: aibrix-container-registry-cn-beijing.cr.volces.com/aibrix/users + newTag: v0.2.0-test +- name: aibrix/controller-manager + newName: aibrix-container-registry-cn-beijing.cr.volces.com/aibrix/controller-manager + newTag: v0.2.0-test +- name: aibrix/runtime + newName: aibrix-container-registry-cn-beijing.cr.volces.com/aibrix/runtime + # not release yet. + newTag: v0.2.0-test \ No newline at end of file diff --git a/config/overlays/vke-ipv4/dependency/envoy-gateway/envoy_config_patch.yaml b/config/overlays/vke-ipv4/dependency/envoy-gateway/envoy_config_patch.yaml new file mode 100644 index 00000000..d4011d23 --- /dev/null +++ b/config/overlays/vke-ipv4/dependency/envoy-gateway/envoy_config_patch.yaml @@ -0,0 +1,18 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: envoy-gateway-config + namespace: envoy-gateway-system +data: + envoy-gateway.yaml: | + apiVersion: gateway.envoyproxy.io/v1alpha1 + kind: EnvoyGateway + provider: + kubernetes: + shutdownManager: + image: aibrix-container-registry-cn-beijing.cr.volces.com/envoyproxy/gateway:v1.1.0 + type: Kubernetes + gateway: + controllerName: gateway.envoyproxy.io/gatewayclass-controller + extensionApis: + enableEnvoyPatchPolicy: true \ No newline at end of file diff --git a/config/overlays/vke-ipv4/dependency/envoy-gateway/kustomization.yaml b/config/overlays/vke-ipv4/dependency/envoy-gateway/kustomization.yaml new file mode 100644 index 00000000..f4b91610 --- /dev/null +++ b/config/overlays/vke-ipv4/dependency/envoy-gateway/kustomization.yaml @@ -0,0 +1,10 @@ +resources: + - ../../../../dependency + +patches: +- path: envoy_config_patch.yaml + +images: +- name: envoyproxy/gateway + newName: aibrix-container-registry-cn-beijing.cr.volces.com/envoyproxy/gateway + newTag: v1.1.0 \ No newline at end of file diff --git a/config/overlays/vke-ipv4/dependency/kustomization.yaml b/config/overlays/vke-ipv4/dependency/kustomization.yaml new file mode 100644 index 00000000..55b42f01 --- /dev/null +++ b/config/overlays/vke-ipv4/dependency/kustomization.yaml @@ -0,0 +1,4 @@ +kind: Kustomization + +resources: +- envoy-gateway diff --git a/config/overlays/vke/default/kustomization.yaml b/config/overlays/vke/default/kustomization.yaml index 5bdcbda7..89e16a2e 100644 --- a/config/overlays/vke/default/kustomization.yaml +++ b/config/overlays/vke/default/kustomization.yaml @@ -23,14 +23,14 @@ images: newTag: latest - name: aibrix/plugins newName: aibrix-container-registry-cn-beijing.cr.volces.com/aibrix/plugins - newTag: v0.2.0-test + newTag: v0.1.1 - name: aibrix/users newName: aibrix-container-registry-cn-beijing.cr.volces.com/aibrix/users - newTag: v0.2.0-test + newTag: v0.1.1 - name: aibrix/controller-manager newName: aibrix-container-registry-cn-beijing.cr.volces.com/aibrix/controller-manager - newTag: v0.2.0-test -- name: aibrix/runtime - newName: aibrix-container-registry-cn-beijing.cr.volces.com/aibrix/runtime + newTag: v0.1.1 +- name: aibrix/gpu-optimizer + newName: aibrix-container-registry-cn-beijing.cr.volces.com/aibrix/gpu-optimizer # not release yet. - newTag: v0.2.0-test \ No newline at end of file + newTag: nightly \ No newline at end of file From 2171b64dbdbfbadc9a2c080783cae32d6244d1f6 Mon Sep 17 00:00:00 2001 From: Ning Wang Date: Mon, 16 Dec 2024 17:41:31 -0800 Subject: [PATCH 3/4] update vke overlay ipv4 make command --- Makefile | 8 +++++ .../vke-ipv4/default/gateway/envoyproxy.yaml | 26 -------------- .../default/gateway/gateway_patch.yaml | 12 ------- .../default/gateway/kustomization.yaml | 3 -- .../overlays/vke-ipv4/default/ipv4_patch.yaml | 15 ++++++++ .../vke-ipv4/default/kustomization.yaml | 36 ++++++------------- .../envoy-gateway/envoy_config_patch.yaml | 18 ---------- .../envoy-gateway/kustomization.yaml | 10 ------ .../vke-ipv4/dependency/kustomization.yaml | 4 --- 9 files changed, 34 insertions(+), 98 deletions(-) delete mode 100644 config/overlays/vke-ipv4/default/gateway/envoyproxy.yaml delete mode 100644 config/overlays/vke-ipv4/default/gateway/gateway_patch.yaml delete mode 100644 config/overlays/vke-ipv4/default/gateway/kustomization.yaml create mode 100644 config/overlays/vke-ipv4/default/ipv4_patch.yaml delete mode 100644 config/overlays/vke-ipv4/dependency/envoy-gateway/envoy_config_patch.yaml delete mode 100644 config/overlays/vke-ipv4/dependency/envoy-gateway/kustomization.yaml delete mode 100644 config/overlays/vke-ipv4/dependency/kustomization.yaml diff --git a/Makefile b/Makefile index 3294e749..0c6fd2ce 100644 --- a/Makefile +++ b/Makefile @@ -245,6 +245,14 @@ deploy-vke: manifests kustomize ## Deploy controller to the K8s cluster specifie undeploy-vke: kustomize ## Undeploy controller from the K8s cluster specified in ~/.kube/config. Call with ignore-not-found=true to ignore resource not found errors during deletion. $(KUSTOMIZE) build config/overlays/vke/default | $(KUBECTL) delete --ignore-not-found=$(ignore-not-found) -f - +.PHONY: deploy-vke-ipv4 +deploy-vke-ipv4: manifests kustomize ## Deploy controller to the K8s cluster specified in ~/.kube/config. + $(KUSTOMIZE) build config/overlays/vke-ipv4/default | $(KUBECTL) create -f - + +.PHONY: undeploy-vke-ipv4 +undeploy-vke-ipv4: kustomize ## Undeploy controller from the K8s cluster specified in ~/.kube/config. Call with ignore-not-found=true to ignore resource not found errors during deletion. + $(KUSTOMIZE) build config/overlays/vke-ipv4/default | $(KUBECTL) delete --ignore-not-found=$(ignore-not-found) -f - + ##@ Dependencies ## Location to install dependencies to diff --git a/config/overlays/vke-ipv4/default/gateway/envoyproxy.yaml b/config/overlays/vke-ipv4/default/gateway/envoyproxy.yaml deleted file mode 100644 index b97c9c26..00000000 --- a/config/overlays/vke-ipv4/default/gateway/envoyproxy.yaml +++ /dev/null @@ -1,26 +0,0 @@ -apiVersion: gateway.envoyproxy.io/v1alpha1 -kind: EnvoyProxy -metadata: - name: aibrix-custom-proxy-config - namespace: aibrix-system -spec: - provider: - type: Kubernetes - kubernetes: - envoyService: - patch: - type: StrategicMerge - value: - metadata: - annotations: - service.beta.kubernetes.io/volcengine-loadbalancer-address-type: "PRIVATE" - spec: - ipFamilies: - - IPv4 # Remove IPv6 - ipFamilyPolicy: SingleStack # Changed from PreferDualStack to SingleStack since VKE does not support ipv6 - envoyDeployment: - pod: - annotations: - vci.vke.volcengine.com/pod-ip-family: dualstack - container: - image: aibrix-container-registry-cn-beijing.cr.volces.com/envoyproxy/envoy:distroless-v1.31.0 \ No newline at end of file diff --git a/config/overlays/vke-ipv4/default/gateway/gateway_patch.yaml b/config/overlays/vke-ipv4/default/gateway/gateway_patch.yaml deleted file mode 100644 index b4dc44b4..00000000 --- a/config/overlays/vke-ipv4/default/gateway/gateway_patch.yaml +++ /dev/null @@ -1,12 +0,0 @@ -apiVersion: gateway.networking.k8s.io/v1 -kind: Gateway -metadata: - name: eg - namespace: aibrix-system -spec: - gatewayClassName: aibrix-eg - infrastructure: - parametersRef: - group: gateway.envoyproxy.io - kind: EnvoyProxy - name: aibrix-custom-proxy-config \ No newline at end of file diff --git a/config/overlays/vke-ipv4/default/gateway/kustomization.yaml b/config/overlays/vke-ipv4/default/gateway/kustomization.yaml deleted file mode 100644 index 6e4df8c2..00000000 --- a/config/overlays/vke-ipv4/default/gateway/kustomization.yaml +++ /dev/null @@ -1,3 +0,0 @@ -resources: - - ../../../../gateway - - envoyproxy.yaml diff --git a/config/overlays/vke-ipv4/default/ipv4_patch.yaml b/config/overlays/vke-ipv4/default/ipv4_patch.yaml new file mode 100644 index 00000000..bafc1d25 --- /dev/null +++ b/config/overlays/vke-ipv4/default/ipv4_patch.yaml @@ -0,0 +1,15 @@ +apiVersion: gateway.envoyproxy.io/v1alpha1 +kind: EnvoyProxy +metadata: + name: aibrix-custom-proxy-config + namespace: aibrix-system +spec: + provider: + kubernetes: + envoyService: + patch: + value: + spec: + ipFamilies: + - IPv4 # Only IPv4 + ipFamilyPolicy: SingleStack # Changed from PreferDualStack to SingleStack \ No newline at end of file diff --git a/config/overlays/vke-ipv4/default/kustomization.yaml b/config/overlays/vke-ipv4/default/kustomization.yaml index 5bdcbda7..a88361fd 100644 --- a/config/overlays/vke-ipv4/default/kustomization.yaml +++ b/config/overlays/vke-ipv4/default/kustomization.yaml @@ -2,35 +2,21 @@ apiVersion: kustomize.config.k8s.io/v1beta1 kind: Kustomization resources: -- ../../../default -- gateway/envoyproxy.yaml +- ../../vke/default patches: - - path: gateway/gateway_patch.yaml +- path: ipv4_patch.yaml + target: + kind: EnvoyProxy + name: aibrix-custom-proxy-config images: -- name: quay.io/kuberay/operator - newName: aibrix-container-registry-cn-beijing.cr.volces.com/aibrix/kuberay-operator - newTag: v1.2.1-patch -- name: envoyproxy/envoy - newName: aibrix-container-registry-cn-beijing.cr.volces.com/envoyproxy/envoy - newTag: distroless-v1.31.0 -- name: busybox - newName: aibrix-container-registry-cn-beijing.cr.volces.com/aibrix/busybox - newTag: stable -- name: redis - newName: aibrix-container-registry-cn-beijing.cr.volces.com/aibrix/redis - newTag: latest -- name: aibrix/plugins - newName: aibrix-container-registry-cn-beijing.cr.volces.com/aibrix/plugins +- name: aibrix-container-registry-cn-beijing.cr.volces.com/aibrix/plugins newTag: v0.2.0-test -- name: aibrix/users - newName: aibrix-container-registry-cn-beijing.cr.volces.com/aibrix/users +- name: aibrix-container-registry-cn-beijing.cr.volces.com/aibrix/users newTag: v0.2.0-test -- name: aibrix/controller-manager - newName: aibrix-container-registry-cn-beijing.cr.volces.com/aibrix/controller-manager +- name: aibrix-container-registry-cn-beijing.cr.volces.com/aibrix/controller-manager newTag: v0.2.0-test -- name: aibrix/runtime - newName: aibrix-container-registry-cn-beijing.cr.volces.com/aibrix/runtime - # not release yet. - newTag: v0.2.0-test \ No newline at end of file +- name: aibrix-container-registry-cn-beijing.cr.volces.com/aibrix/runtime + newTag: v0.2.0-test + diff --git a/config/overlays/vke-ipv4/dependency/envoy-gateway/envoy_config_patch.yaml b/config/overlays/vke-ipv4/dependency/envoy-gateway/envoy_config_patch.yaml deleted file mode 100644 index d4011d23..00000000 --- a/config/overlays/vke-ipv4/dependency/envoy-gateway/envoy_config_patch.yaml +++ /dev/null @@ -1,18 +0,0 @@ -apiVersion: v1 -kind: ConfigMap -metadata: - name: envoy-gateway-config - namespace: envoy-gateway-system -data: - envoy-gateway.yaml: | - apiVersion: gateway.envoyproxy.io/v1alpha1 - kind: EnvoyGateway - provider: - kubernetes: - shutdownManager: - image: aibrix-container-registry-cn-beijing.cr.volces.com/envoyproxy/gateway:v1.1.0 - type: Kubernetes - gateway: - controllerName: gateway.envoyproxy.io/gatewayclass-controller - extensionApis: - enableEnvoyPatchPolicy: true \ No newline at end of file diff --git a/config/overlays/vke-ipv4/dependency/envoy-gateway/kustomization.yaml b/config/overlays/vke-ipv4/dependency/envoy-gateway/kustomization.yaml deleted file mode 100644 index f4b91610..00000000 --- a/config/overlays/vke-ipv4/dependency/envoy-gateway/kustomization.yaml +++ /dev/null @@ -1,10 +0,0 @@ -resources: - - ../../../../dependency - -patches: -- path: envoy_config_patch.yaml - -images: -- name: envoyproxy/gateway - newName: aibrix-container-registry-cn-beijing.cr.volces.com/envoyproxy/gateway - newTag: v1.1.0 \ No newline at end of file diff --git a/config/overlays/vke-ipv4/dependency/kustomization.yaml b/config/overlays/vke-ipv4/dependency/kustomization.yaml deleted file mode 100644 index 55b42f01..00000000 --- a/config/overlays/vke-ipv4/dependency/kustomization.yaml +++ /dev/null @@ -1,4 +0,0 @@ -kind: Kustomization - -resources: -- envoy-gateway From a5f9bb58b2a209e0746e846856fd5f748d5f4dbf Mon Sep 17 00:00:00 2001 From: Ning Wang Date: Wed, 18 Dec 2024 17:16:08 -0800 Subject: [PATCH 4/4] update image version --- config/overlays/vke-ipv4/default/kustomization.yaml | 8 ++++---- config/overlays/vke/default/kustomization.yaml | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/config/overlays/vke-ipv4/default/kustomization.yaml b/config/overlays/vke-ipv4/default/kustomization.yaml index a88361fd..30debb17 100644 --- a/config/overlays/vke-ipv4/default/kustomization.yaml +++ b/config/overlays/vke-ipv4/default/kustomization.yaml @@ -12,11 +12,11 @@ patches: images: - name: aibrix-container-registry-cn-beijing.cr.volces.com/aibrix/plugins - newTag: v0.2.0-test + newTag: v0.2.0-rc.1 - name: aibrix-container-registry-cn-beijing.cr.volces.com/aibrix/users - newTag: v0.2.0-test + newTag: v0.2.0-rc.1 - name: aibrix-container-registry-cn-beijing.cr.volces.com/aibrix/controller-manager - newTag: v0.2.0-test + newTag: v0.2.0-rc.1 - name: aibrix-container-registry-cn-beijing.cr.volces.com/aibrix/runtime - newTag: v0.2.0-test + newTag: v0.2.0-rc.1 diff --git a/config/overlays/vke/default/kustomization.yaml b/config/overlays/vke/default/kustomization.yaml index 89e16a2e..446f699a 100644 --- a/config/overlays/vke/default/kustomization.yaml +++ b/config/overlays/vke/default/kustomization.yaml @@ -30,7 +30,7 @@ images: - name: aibrix/controller-manager newName: aibrix-container-registry-cn-beijing.cr.volces.com/aibrix/controller-manager newTag: v0.1.1 -- name: aibrix/gpu-optimizer - newName: aibrix-container-registry-cn-beijing.cr.volces.com/aibrix/gpu-optimizer +- name: aibrix/runtime + newName: aibrix-container-registry-cn-beijing.cr.volces.com/aibrix/runtime # not release yet. newTag: nightly \ No newline at end of file