diff --git a/kustomize/mycrd.yaml b/kustomize/mycrd.yaml index a2d3862..95e1e1c 100644 --- a/kustomize/mycrd.yaml +++ b/kustomize/mycrd.yaml @@ -74,12 +74,12 @@ spec: volumes: - name: app-script-volume configMap: - name: app-script-config-1 + name: app-script-config-2 --- apiVersion: v1 kind: ConfigMap metadata: - name: app-script-config-1 + name: app-script-config-2 data: app.py: | #! /bin/python3 @@ -88,7 +88,7 @@ data: class GetHandler(BaseHTTPRequestHandler): def do_GET(self): - sleep(10) + sleep(1) x = self.wfile.write self.send_response(200) self.send_header("Content-type", "text/html")