Your ROOT_URL in app.ini is http://git.slaventius.ru/ but you are visiting http://37.143.12.169/test3k/auth/src/commit/8ebb10d836359beb45c34c4aae1b30ab99be86b2/deploy/auth-deployment.yaml You should set ROOT_URL correctly, otherwise the web may not work correctly.
 
 
 
 

33 lines
765 B

apiVersion: apps/v1
kind: Deployment
metadata:
name: auth-application
labels:
app: auth-application
spec:
replicas: 3
selector:
matchLabels:
app: auth-application
template:
metadata:
labels:
app: auth-application
spec:
containers:
- name: auth-application
image: slaventius/test3k_auth:latest
imagePullPolicy: Always
ports:
- containerPort: 9994
envFrom:
- configMapRef:
name: auth-config
readinessProbe:
httpGet:
path: /api/v1/healthz
port: 9994
periodSeconds: 1
initialDelaySeconds: 3
failureThreshold: 2
successThreshold: 1