10-task/dubbo-samples-shop/deploy/detail-v2/Deployment.yml (51 lines of code) (raw):

# Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. apiVersion: apps/v1 kind: Deployment metadata: name: shop-detail-v2 namespace: dubbo-demo spec: replicas: 3 selector: matchLabels: app: shop-detail detailVersion: v2 template: metadata: labels: app: shop-detail detailVersion: v2 spec: volumes: - name: skywalking-agent emptyDir: { } initContainers: - name: agent-container image: apache/skywalking-java-agent:8.13.0-java17 volumeMounts: - name: skywalking-agent mountPath: /agent command: [ "/bin/sh" ] args: [ "-c", "cp -R /skywalking/agent /agent/" ] containers: - name: shop-detail image: apache/dubbo-demo:dubbo-samples-shop-detail_v2_0.0.1 imagePullPolicy: Always ports: - name: dubbo containerPort: 20886 protocol: TCP - name: dubbo-qos containerPort: 20996 protocol: TCP volumeMounts: - name: skywalking-agent mountPath: /skywalking env: - name: JAVA_TOOL_OPTIONS value: "-javaagent:/skywalking/agent/skywalking-agent.jar" - name: SW_AGENT_NAME value: shop::shop-detail - name: SW_AGENT_COLLECTOR_BACKEND_SERVICES value: "skywalking-oap-server.dubbo-system.svc:11800" - name: DUBBO_LABELS value: "detailVersion=v2; region=hangzhou;"