diff --git a/examples/demo/3_network_policy/namespace.yaml b/examples/demo/3_network_policy/namespace.yaml index 474a73e038..f2b52db070 100644 --- a/examples/demo/3_network_policy/namespace.yaml +++ b/examples/demo/3_network_policy/namespace.yaml @@ -1,4 +1,4 @@ kind: Namespace apiVersion: v1 metadata: - name: "demo" \ No newline at end of file + name: "devtest" \ No newline at end of file diff --git a/examples/demo/5_health_check/pod.yaml b/examples/demo/5_health_check/pod.yaml index f5f0004d3a..92d861ac3e 100644 --- a/examples/demo/5_health_check/pod.yaml +++ b/examples/demo/5_health_check/pod.yaml @@ -6,7 +6,7 @@ metadata: name: probe spec: containers: - - name: readiness + - name: check-readiness image: k8s.gcr.io/busybox args: - /bin/sh @@ -18,7 +18,7 @@ spec: command: - cat - /tmp/healthy - - name: liveness + - name: check-liveness image: k8s.gcr.io/liveness args: - /server diff --git a/examples/demo/5_health_check/policy.yaml b/examples/demo/5_health_check/policy.yaml index 0550b16fe6..e2c199d12e 100644 --- a/examples/demo/5_health_check/policy.yaml +++ b/examples/demo/5_health_check/policy.yaml @@ -13,7 +13,7 @@ spec: pattern: spec: containers: - - (name): "readiness" + - (name): "check-readiness" readinessProbe: successThreshold: ">1" - name: check-livenessProbe-exists @@ -25,7 +25,7 @@ spec: pattern: spec: containers: - - (name): "liveness" + - (name): "check-liveness" livenessProbe: httpGet: path: "?*"