50 lines
1.0 KiB
YAML
50 lines
1.0 KiB
YAML
##################################################################################################
|
|
# Ratings service
|
|
##################################################################################################
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: ratings
|
|
labels:
|
|
app: ratings
|
|
service: ratings
|
|
spec:
|
|
ports:
|
|
- port: 9080
|
|
name: http
|
|
selector:
|
|
app: ratings
|
|
---
|
|
apiVersion: v1
|
|
kind: ServiceAccount
|
|
metadata:
|
|
name: bookinfo-ratings
|
|
labels:
|
|
account: ratings
|
|
---
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: ratings-v1
|
|
labels:
|
|
app: ratings
|
|
version: v1
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: ratings
|
|
version: v1
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: ratings
|
|
version: v1
|
|
spec:
|
|
serviceAccountName: bookinfo-ratings
|
|
containers:
|
|
- name: ratings
|
|
image: docker.io/istio/examples-bookinfo-ratings-v1:1.18.0
|
|
imagePullPolicy: IfNotPresent
|
|
ports:
|
|
- containerPort: 9080 |