19 lines
540 B
Python
19 lines
540 B
Python
# https://gitlab.com/gitlab-org/gitlab/-/issues/22684
|
|
# herokuish/AutoDevOps can't test some languages
|
|
|
|
# Internal error occurred: failed calling webhook "validate.nginx.ingress.kubernetes.io"
|
|
# https://stackoverflow.com/questions/61365202/nginx-ingress-service-ingress-nginx-controller-admission-not-found
|
|
# kubectl get -A ValidatingWebhookConfiguration
|
|
# kubectl delete -A ValidatingWebhookConfiguration ingress-nginx-admission
|
|
|
|
|
|
|
|
from flask import Flask
|
|
|
|
app = Flask(__name__)
|
|
|
|
|
|
@app.route('/')
|
|
def hello():
|
|
return 'Hello World!\n'
|