Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for livenessProbe (0.27 sec)

  1. samples/addons/jaeger.yaml

                - name: COLLECTOR_ZIPKIN_HOST_PORT
                  value: ":9411"
                - name: MEMORY_MAX_TRACES
                  value: "50000"
                - name: QUERY_BASE_PATH
                  value: /jaeger
              livenessProbe:
                httpGet:
                  path: /
                  port: 14269
              readinessProbe:
                httpGet:
                  path: /
                  port: 14269
              volumeMounts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. samples/addons/kiali.yaml

            readinessProbe:
              httpGet:
                path: /kiali/healthz
                port: api-port
                scheme: HTTP
              initialDelaySeconds: 5
              periodSeconds: 30
            livenessProbe:
              httpGet:
                path: /kiali/healthz
                port: api-port
                scheme: HTTP
              initialDelaySeconds: 5
              periodSeconds: 30
            env:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. samples/addons/prometheus.yaml

                  scheme: HTTP
                initialDelaySeconds: 0
                periodSeconds: 5
                timeoutSeconds: 4
                failureThreshold: 3
                successThreshold: 1
              livenessProbe:
                httpGet:
                  path: /-/healthy
                  port: 9090
                  scheme: HTTP
                initialDelaySeconds: 30
                periodSeconds: 15
                timeoutSeconds: 10
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_container.go

    			}
    		case reasonLivenessProbe:
    			if isProbeTerminationGracePeriodSecondsSet(pod, containerSpec, containerSpec.LivenessProbe, containerName, containerID, "LivenessProbe") {
    				return *containerSpec.LivenessProbe.TerminationGracePeriodSeconds
    			}
    		}
    		return *pod.Spec.TerminationGracePeriodSeconds
    	}
    	return gracePeriod
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    			Image:         "bar-image",
    			RestartPolicy: &containerRestartPolicyAlways,
    			LivenessProbe: &v1.Probe{},
    			StartupProbe:  &v1.Probe{},
    		},
    		{
    			Name:          "restartable-init-3",
    			Image:         "bar-image",
    			RestartPolicy: &containerRestartPolicyAlways,
    			LivenessProbe: &v1.Probe{},
    			StartupProbe:  &v1.Probe{},
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  6. cni/pkg/nodeagent/net_test.go

    		Name: "app1",
    		Ports: []corev1.ContainerPort{
    			{
    				Name:          "foo-port",
    				ContainerPort: 8010,
    			},
    			{
    				Name:          "foo-2-port",
    				ContainerPort: 8020,
    			},
    		},
    		LivenessProbe: &corev1.Probe{
    			ProbeHandler: corev1.ProbeHandler{
    				HTTPGet: &corev1.HTTPGetAction{
    					Port: intstr.FromString("foo-2-port"),
    				},
    			},
    		},
    		StartupProbe: &corev1.Probe{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__batch__v1_openapi.json

                  }
                ],
                "description": "Actions that the management system should take in response to container lifecycle events. Cannot be updated."
              },
              "livenessProbe": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.core.v1.Probe"
                  }
                ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  8. samples/addons/grafana.yaml

                  value: "false"
                - name: "GF_SECURITY_ADMIN_PASSWORD"
                  value: "admin"
                - name: "GF_SECURITY_ADMIN_USER"
                  value: "admin"
              livenessProbe:
                failureThreshold: 10
                httpGet:
                  path: /api/health
                  port: 3000
                initialDelaySeconds: 60
                timeoutSeconds: 30
              readinessProbe:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  9. pkg/generated/openapi/zz_generated.openapi.go

    										Default: map[string]interface{}{},
    										Ref:     ref("k8s.io/api/core/v1.VolumeDevice"),
    									},
    								},
    							},
    						},
    					},
    					"livenessProbe": {
    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  10. api/openapi-spec/swagger.json

              "$ref": "#/definitions/io.k8s.api.core.v1.Lifecycle",
              "description": "Actions that the management system should take in response to container lifecycle events. Cannot be updated."
            },
            "livenessProbe": {
              "$ref": "#/definitions/io.k8s.api.core.v1.Probe",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
Back to top