diff --git a/kustomize/mycrd.yaml b/kustomize/mycrd.yaml index 4e957fd..ecff05b 100644 --- a/kustomize/mycrd.yaml +++ b/kustomize/mycrd.yaml @@ -49,7 +49,7 @@ spec: - name: app args: - '/bin/python3' - - '/app/app2.py' + - '/app/app.py' readinessProbe: initialDelaySeconds: 10 timeoutSeconds: 10 @@ -88,7 +88,7 @@ data: class GetHandler(BaseHTTPRequestHandler): def do_GET(self): - sleep(5) + sleep(10) x = self.wfile.write self.send_response(200) self.send_header("Content-type", "text/html")