add readeness/liveness routes

Vbarinov 2 years ago
parent ac880ad719
commit 1e27f3fe82

@ -31,6 +31,13 @@ class Clients(db.Model):
_tablename__ = 'clients'
id = db.Column(db.Integer, primary_key=True)
userip = db.Column(db.String(12))
@app.route("/alive")
def alive():
return "alive"
@app.route("/ready")
def alive():
return "ready"
@app.route("/")
def hello():

@ -51,11 +51,11 @@ spec:
protocol: TCP
livenessProbe:
httpGet:
path: /
path: /alive
port: http
readinessProbe:
httpGet:
path: /
path: /ready
port: http
resources:
{{- toYaml .Values.resources | nindent 12 }}

Loading…
Cancel
Save