Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 69 for readinessProbe (0.18 sec)

  1. operator/pkg/translate/translate_value.go

    			"{{.ValueComponentName}}.priorityClassName":     "Components.{{.ComponentName}}.K8s.PriorityClassName",
    			"{{.ValueComponentName}}.readinessProbe":        "Components.{{.ComponentName}}.K8s.ReadinessProbe",
    			"{{.ValueComponentName}}.replicaCount":          "Components.{{.ComponentName}}.K8s.ReplicaCount",
    			"{{.ValueComponentName}}.resources":             "Components.{{.ComponentName}}.K8s.Resources",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 08 03:52:24 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  2. samples/addons/prometheus.yaml

                - --web.console.templates=/etc/prometheus/consoles
                - --web.enable-lifecycle
              ports:
                - containerPort: 9090
              readinessProbe:
                httpGet:
                  path: /-/ready
                  port: 9090
                  scheme: HTTP
                initialDelaySeconds: 0
                periodSeconds: 5
                timeoutSeconds: 4
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  3. manifests/charts/istio-control/istio-discovery/files/grpc-agent.yaml

          value: "true"
        {{with .Values.global.imagePullPolicy }}imagePullPolicy: "{{.}}"{{end}}
        {{ if ne (annotation .ObjectMeta `status.sidecar.istio.io/port` .Values.global.proxy.statusPort) `0` }}
        readinessProbe:
          httpGet:
            path: /healthz/ready
            port: 15020
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 26 16:51:17 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/etcd/local_test.go

          httpGet:
            host: 127.0.0.1
            path: /livez
            port: 2381
            scheme: HTTP
          initialDelaySeconds: 10
          periodSeconds: 10
          timeoutSeconds: 15
        name: etcd
        readinessProbe:
          failureThreshold: 3
          httpGet:
            host: 127.0.0.1
            path: /readyz
            port: 2381
            scheme: HTTP
          periodSeconds: 1
          timeoutSeconds: 15
        resources:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/addons/dns/dns_test.go

                path: /health
                port: 8080
                scheme: HTTP
              initialDelaySeconds: 60
              timeoutSeconds: 5
              successThreshold: 1
              failureThreshold: 5
            readinessProbe:
              httpGet:
                path: /ready
                port: 8181
                scheme: HTTP
            securityContext:
              allowPrivilegeEscalation: false
              capabilities:
                add:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/crdclient/client_test.go

    			GroupVersionKind: r.GroupVersionKind(),
    			Name:             name,
    		}
    		if !r.IsClusterScoped() {
    			cfgMeta.Namespace = namespace
    		}
    		pb := &v1alpha3.WorkloadGroup{Probe: &v1alpha3.ReadinessProbe{PeriodSeconds: 6}}
    		if _, err := store.Create(config.Config{
    			Meta: cfgMeta,
    			Spec: config.Spec(pb),
    		}); err != nil {
    			t.Fatalf("Create bad: %v", err)
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 02:58:52 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. operator/pkg/translate/translate.go

    			"Components.{{.ComponentName}}.K8S.ReadinessProbe":      {OutPath: "[{{.ResourceType}}:{{.ResourceName}}].spec.template.spec.containers.[name:{{.ContainerName}}].readinessProbe"},
    			"Components.{{.ComponentName}}.K8S.ReplicaCount":        {OutPath: "[{{.ResourceType}}:{{.ResourceName}}].spec.replicas"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 19:43:09 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  8. pilot/pkg/autoregistration/controller_test.go

    		Metadata: &model.NodeMetadata{
    			Namespace: wle.Namespace,
    			Network:   network.ID(wleSpec.Network),
    			ProxyConfig: &model.NodeMetaProxyConfig{
    				ReadinessProbe: &v1alpha3.ReadinessProbe{},
    			},
    			WorkloadEntry: wle.Name, // indicate a name of the WorkloadEntry this proxy corresponds to
    		},
    	}
    }
    
    func fakeNode(r, z, sz string) *core.Node {
    	return &core.Node{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  9. manifests/charts/istiod-remote/files/injection-template.yaml

            port: 15021
          initialDelaySeconds: 0
          periodSeconds: 1
          timeoutSeconds: 3
          failureThreshold: {{ .Values.global.proxy.startupProbe.failureThreshold }}
      {{ end }}
        readinessProbe:
          httpGet:
            path: /healthz/ready
            port: 15021
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  10. manifests/charts/istio-control/istio-discovery/files/injection-template.yaml

            port: 15021
          initialDelaySeconds: 0
          periodSeconds: 1
          timeoutSeconds: 3
          failureThreshold: {{ .Values.global.proxy.startupProbe.failureThreshold }}
      {{ end }}
        readinessProbe:
          httpGet:
            path: /healthz/ready
            port: 15021
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 23.8K bytes
    - Viewed (0)
Back to top