Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for readinessProbe (0.19 sec)

  1. samples/addons/extras/zipkin.yaml

        spec:
          containers:
            - name: zipkin
              image: openzipkin/zipkin-slim:3.4.0
              env:
                - name: STORAGE_METHOD
                  value: "mem"
              readinessProbe:
                httpGet:
                  path: /health
                  port: 9411
                initialDelaySeconds: 5
                periodSeconds: 5
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: tracing
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. samples/addons/jaeger.yaml

                  value: "50000"
                - name: QUERY_BASE_PATH
                  value: /jaeger
              livenessProbe:
                httpGet:
                  path: /
                  port: 14269
              readinessProbe:
                httpGet:
                  path: /
                  port: 14269
              volumeMounts:
                - name: data
                  mountPath: /badger
              resources:
                requests:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. manifests/charts/ztunnel/templates/daemonset.yaml

              runAsGroup: 1337
              runAsNonRoot: false
              runAsUser: 0
    {{- if .Values.seLinuxOptions }}
              seLinuxOptions:
    {{ toYaml .Values.seLinuxOptions | trim | indent 12 }}
    {{- end }}
            readinessProbe:
              httpGet:
                port: 15021
                path: /healthz/ready
            args:
            - proxy
            - ztunnel
            env:
            - name: CA_ADDRESS
            {{- if .Values.caAddress }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 01:33:52 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/server.go

    )
    
    func init() {
    	// Disable gRPC tracing. It has performance impacts (See https://github.com/grpc/grpc-go/issues/695)
    	grpc.EnableTracing = false
    }
    
    // readinessProbe defines a function that will be used indicate whether a server is ready.
    type readinessProbe func() bool
    
    // Server contains the runtime configuration for the Pilot discovery service.
    type Server struct {
    	XDSServer *xds.DiscoveryServer
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  5. cluster/addons/dns/kube-dns/kube-dns.yaml.in

                port: 10054
                scheme: HTTP
              initialDelaySeconds: 60
              timeoutSeconds: 5
              successThreshold: 1
              failureThreshold: 5
            readinessProbe:
              httpGet:
                path: /readiness
                port: 8081
                scheme: HTTP
              # we poll on pod startup for the Kubernetes master service and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 03:19:02 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. cluster/addons/dns/kube-dns/kube-dns.yaml.sed

                port: 10054
                scheme: HTTP
              initialDelaySeconds: 60
              timeoutSeconds: 5
              successThreshold: 1
              failureThreshold: 5
            readinessProbe:
              httpGet:
                path: /readiness
                port: 8081
                scheme: HTTP
              # we poll on pod startup for the Kubernetes master service and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 03:19:02 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  7. cluster/addons/dns/kube-dns/kube-dns.yaml.base

                port: 10054
                scheme: HTTP
              initialDelaySeconds: 60
              timeoutSeconds: 5
              successThreshold: 1
              failureThreshold: 5
            readinessProbe:
              httpGet:
                path: /readiness
                port: 8081
                scheme: HTTP
              # we poll on pod startup for the Kubernetes master service and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 03:19:02 UTC 2024
    - 7K bytes
    - Viewed (0)
  8. samples/addons/loki.yaml

              securityContext:
                allowPrivilegeEscalation: false
                capabilities:
                  drop:
                  - ALL
                readOnlyRootFilesystem: true
              readinessProbe:
                httpGet:
                  path: /ready
                  port: http-metrics
                initialDelaySeconds: 30
                timeoutSeconds: 1
              volumeMounts:
                - name: tmp
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. manifests/charts/istio-control/istio-discovery/files/gateway-injection-template.yaml

        {{- range $key, $value := .ProxyConfig.ProxyMetadata }}
        - name: {{ $key }}
          value: "{{ $value }}"
        {{- end }}
        {{with .Values.global.imagePullPolicy }}imagePullPolicy: "{{.}}"{{end}}
        readinessProbe:
          httpGet:
            path: /healthz/ready
            port: 15021
          initialDelaySeconds: {{.Values.global.proxy.readinessInitialDelaySeconds }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. manifests/charts/istiod-remote/files/gateway-injection-template.yaml

        {{- range $key, $value := .ProxyConfig.ProxyMetadata }}
        - name: {{ $key }}
          value: "{{ $value }}"
        {{- end }}
        {{with .Values.global.imagePullPolicy }}imagePullPolicy: "{{.}}"{{end}}
        readinessProbe:
          httpGet:
            path: /healthz/ready
            port: 15021
          initialDelaySeconds: {{.Values.global.proxy.readinessInitialDelaySeconds }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top