This is an automated email from the ASF dual-hosted git repository. liujun pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/dubbo-samples.git
commit 7534be70fde23db598d2ee5d5ea66816c6ae599a Author: chickenlj <[email protected]> AuthorDate: Fri Sep 6 20:20:59 2024 +0800 update manifests --- .../release/kubernetes_manifests.yaml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/online_bontique_demo/release/kubernetes_manifests.yaml b/online_bontique_demo/release/kubernetes_manifests.yaml index 6cee5ada8..0487b8654 100644 --- a/online_bontique_demo/release/kubernetes_manifests.yaml +++ b/online_bontique_demo/release/kubernetes_manifests.yaml @@ -94,11 +94,32 @@ spec: - name: dubbo containerPort: 20889 protocol: TCP + - name: dubbo + containerPort: 9000 + protocol: TCP env: - name: JAVA_TOOL_OPTIONS value: "-Dnacos.address=nacos.dubbo-system.svc" --- +apiVersion: v1 +kind: Service +metadata: + name: frontend + namespace: dubbo-boutique-demo +spec: + type: ClusterIP + selector: + app: frontend + ports: + - protocol: tcp + port: 20889 + targetPort: 20889 + - protocol: http + port: 9000 + targetPort: 9000 +--- + # App ad-service apiVersion: apps/v1 kind: Deployment --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
