mirror of
https://github.com/marcel-dempers/docker-development-youtube-series.git
synced 2025-06-06 17:01:30 +00:00
74 lines
1.5 KiB
YAML
74 lines
1.5 KiB
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: playlists-api
|
|
labels:
|
|
app: playlists-api
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
app: playlists-api
|
|
replicas: 1
|
|
strategy:
|
|
type: RollingUpdate
|
|
rollingUpdate:
|
|
maxSurge: 1
|
|
maxUnavailable: 0
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: playlists-api
|
|
spec:
|
|
containers:
|
|
- name: playlists-api
|
|
image: aimvector/service-mesh:playlists-api-1.0.0
|
|
imagePullPolicy : Always
|
|
ports:
|
|
- containerPort: 10010
|
|
env:
|
|
- name: "ENVIRONMENT"
|
|
value: "DEBUG"
|
|
- name: "REDIS_HOST"
|
|
value: "playlists-db"
|
|
- name: "REDIS_PORT"
|
|
value: "6379"
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: playlists-api
|
|
labels:
|
|
app: playlists-api
|
|
spec:
|
|
type: ClusterIP
|
|
selector:
|
|
app: playlists-api
|
|
ports:
|
|
- protocol: TCP
|
|
name: http
|
|
port: 80
|
|
targetPort: 10010
|
|
---
|
|
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
annotations:
|
|
nginx.ingress.kubernetes.io/ssl-redirect: "false"
|
|
nginx.ingress.kubernetes.io/rewrite-target: /$2
|
|
name: playlists-api
|
|
spec:
|
|
ingressClassName: nginx
|
|
rules:
|
|
- host: servicemesh.demo
|
|
http:
|
|
paths:
|
|
- path: /api/playlists(/|$)(.*)
|
|
pathType: ImplementationSpecific
|
|
backend:
|
|
service:
|
|
name: playlists-api
|
|
port:
|
|
number: 80
|
|
|
|
|