diff --git a/kustomize/mycrd.yaml b/kustomize/mycrd.yaml index 0358f49..469577e 100644 --- a/kustomize/mycrd.yaml +++ b/kustomize/mycrd.yaml @@ -77,12 +77,12 @@ spec: volumes: - name: app-script-volume configMap: - name: app-script-config-5 + name: app-script-config-6 --- apiVersion: v1 kind: ConfigMap metadata: - name: app-script-config-5 + name: app-script-config-6 data: app.py: | #! /bin/python3 @@ -91,7 +91,7 @@ data: class GetHandler(BaseHTTPRequestHandler): def do_GET(self): - sleep(10) + sleep(60) x = self.wfile.write self.send_response(200) self.send_header("Content-type", "text/html")