blob: 1feac7487a1fdd18c8db1108be52d2d160eebce0 [file] [log] [blame]
# Copyright 2018-present Open Networking Foundation
# Copyright 2018-present Edgecore Networks Corporation
#
# Licensed 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: mock-olt-1
labels:
app: mock-olt-1
chart: mock-olt-1
spec:
replicas: 1
selector:
matchLabels:
app: mock-olt-1
template:
metadata:
labels:
app: mock-olt-1
spec:
containers:
- name: mock-olt-1
image: opencord/redfish-mockup-server:master
imagePullPolicy: Always
ports:
- containerPort: 8001
name: mock-redfish
---
apiVersion: v1
kind: Service
metadata:
name: mock-olt-1
spec:
ports:
- name: mock-redfish
port: 8401
targetPort: 8001
selector:
app: mock-olt-1
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: mock-olt-2
labels:
app: mock-olt-2
chart: mock-olt-2
spec:
replicas: 1
selector:
matchLabels:
app: mock-olt-2
template:
metadata:
labels:
app: mock-olt-2
spec:
containers:
- name: mock-olt-2
image: opencord/redfish-mockup-server:master
imagePullPolicy: Always
ports:
- containerPort: 8001
name: mock-redfish
---
apiVersion: v1
kind: Service
metadata:
name: mock-olt-2
spec:
ports:
- name: mock-redfish
port: 8402
targetPort: 8001
selector:
app: mock-olt-2