blob: 76217c5e6274f8931e1477a62667655e49bca4d5 [file] [log] [blame]
# 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.
#zookeeper
apiVersion: v1
kind: Namespace
metadata:
name: dubbo-system
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: zookeeper
namespace: dubbo-system
spec:
replicas: 1
selector:
matchLabels:
app: zookeeper
template:
metadata:
labels:
app: zookeeper
spec:
containers:
- name: zookeeper
image: zookeeper:latest
imagePullPolicy: Always
ports:
- containerPort: 2181
name: rpc
---
apiVersion: v1
kind: Service
metadata:
name: zookeeper
namespace: dubbo-system
spec:
type: ClusterIP
sessionAffinity: None
selector:
app: zookeeper
ports:
- port: 2181
name: rpc
targetPort: 2181
---
#provider
apiVersion: apps/v1
kind: Deployment
metadata:
name: dubbo-app
namespace: dubbo-system
labels:
app: dubbo-app
app-type: dubbo
spec:
replicas: 1
selector:
matchLabels:
app: dubbo-app
app-type: dubbo
template:
metadata:
name: dubbo-app
labels:
app: dubbo-app
app-type: dubbo
spec:
containers:
- name: dubbo-app
image: metrics-app:latest # change to your docker image
env:
- name: ZOOKEEPER_ADDRESS
value: zookeeper.dubbo-system.svc.cluster.local
imagePullPolicy: Never
ports:
- name: dubbo
containerPort: 20000
protocol: TCP
- name: metrics
containerPort: 9099
protocol: TCP
---
#consumer
apiVersion: apps/v1
kind: Deployment
metadata:
name: dubbo-client
namespace: dubbo-system
labels:
app: dubbo-client
app-type: dubbo
spec:
replicas: 1
selector:
matchLabels:
app: dubbo-client
app-type: dubbo
template:
metadata:
name: dubbo-client
labels:
app: dubbo-client
app-type: dubbo
spec:
containers:
- name: dubbo-client
image: metrics-client:latest # change to your docker image
env:
- name: ZOOKEEPER_ADDRESS
value: zookeeper.dubbo-system.svc.cluster.local
imagePullPolicy: Never
ports:
- name: metrics
containerPort: 9097
protocol: TCP