Quellcode durchsuchen

Tweak timings of the pre-post-sync example

Jesse Suen vor 6 Jahren
Ursprung
Commit
5eb3352b40

+ 2 - 2
pre-post-sync/components/guestbook-ui.jsonnet

@@ -54,8 +54,8 @@ local params = std.extVar("__ksonnet/params").components["guestbook-ui"];
                         "exec": {
                             "command": [ "sh", "-c", "exit 0" ],
                         },
-                        "initialDelaySeconds": 30,
-                        "periodSeconds": 120,
+                        "initialDelaySeconds": 10,
+                        "periodSeconds": 30,
                     }
                   }
                ]

+ 1 - 1
pre-post-sync/components/params.libsonnet

@@ -12,7 +12,7 @@
       name: "pre-post-sync",
       replicas: 1,
       servicePort: 80,
-      type: "LoadBalancer",
+      type: "ClusterIP",
     },
     "pre-sync-job": {},
     "post-sync-job": {},

+ 1 - 1
pre-post-sync/components/post-sync-job.yaml

@@ -11,6 +11,6 @@ spec:
       containers:
       - name: sleep
         image: alpine:latest
-        command: ["sleep", "20"]
+        command: ["sleep", "10"]
       restartPolicy: Never
   backoffLimit: 0

+ 1 - 1
pre-post-sync/components/pre-sync-job.yaml

@@ -11,6 +11,6 @@ spec:
       containers:
       - name: sleep
         image: alpine:latest
-        command: ["sleep", "20"]
+        command: ["sleep", "10"]
       restartPolicy: Never
   backoffLimit: 0