Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 394 for Healthy (0.12 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/healthz/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package healthz implements basic http server health checking.
    // Usage:
    //
    //	import "k8s.io/apiserver/pkg/server/healthz"
    //	healthz.InstallHandler(mux)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 792 bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inject/one_container.yaml.injected

            livenessProbe:
              httpGet:
                path: /app-health/hello/livez
                port: 15020
            name: hello
            ports:
            - containerPort: 80
              name: http
            readinessProbe:
              httpGet:
                path: /app-health/hello/readyz
                port: 15020
            resources: {}
          - args:
            - proxy
            - sidecar
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. pkg/kube/inject/testdata/inject/tcp-probes.yaml.injected

            livenessProbe:
              httpGet:
                path: /app-health/hello/livez
                port: 15020
            name: hello
            ports:
            - containerPort: 80
              name: http
            readinessProbe:
              httpGet:
                path: /app-health/hello/readyz
                port: 15020
            resources: {}
          - args:
            - proxy
            - sidecar
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 7K bytes
    - Viewed (0)
  4. pkg/kube/inject/testdata/inject/two_container.yaml.injected

            readinessProbe:
              httpGet:
                path: /app-health/hello/readyz
                port: 15020
            resources: {}
          - image: fake.docker.io/google-samples/hello-go-gke:1.0
            name: world
            ports:
            - containerPort: 90
              name: http
            readinessProbe:
              httpGet:
                path: /app-health/world/readyz
                port: 15020
            resources: {}
          - args:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. pkg/kube/inject/testdata/inject/named_port.yaml.injected

              value: '{"/app-health/hello/readyz":{"httpGet":{"port":80}}}'
            image: gcr.io/istio-testing/proxyv2:latest
            name: istio-proxy
            ports:
            - containerPort: 15090
              name: http-envoy-prom
              protocol: TCP
            readinessProbe:
              failureThreshold: 4
              httpGet:
                path: /healthz/ready
                port: 15021
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. pkg/kube/inject/testdata/inject/hello-readiness.yaml.injected

              value: '{"/app-health/hello/readyz":{"httpGet":{"path":"/ip","port":8000}}}'
            image: gcr.io/istio-testing/proxyv2:latest
            name: istio-proxy
            ports:
            - containerPort: 15090
              name: http-envoy-prom
              protocol: TCP
            readinessProbe:
              failureThreshold: 4
              httpGet:
                path: /healthz/ready
                port: 15021
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  7. pkg/kube/inject/testdata/inject/ready_only.yaml.injected

              value: '{"/app-health/hello/readyz":{"httpGet":{"port":3333}}}'
            image: gcr.io/istio-testing/proxyv2:latest
            name: istio-proxy
            ports:
            - containerPort: 15090
              name: http-envoy-prom
              protocol: TCP
            readinessProbe:
              failureThreshold: 4
              httpGet:
                path: /healthz/ready
                port: 15021
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. pkg/kube/inject/testdata/inject/native-sidecar.yaml.injected

        name: istio-proxy
        ports:
        - containerPort: 15090
          name: http-envoy-prom
          protocol: TCP
        readinessProbe:
          failureThreshold: 4
          httpGet:
            path: /healthz/ready
            port: 15021
          periodSeconds: 15
          timeoutSeconds: 3
        resources:
          limits:
            cpu: "2"
            memory: 1Gi
          requests:
            cpu: 100m
            memory: 128Mi
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inject/startup_only.yaml.injected

              value: '{"/app-health/hello/startupz":{"httpGet":{"port":3333}}}'
            image: gcr.io/istio-testing/proxyv2:latest
            name: istio-proxy
            ports:
            - containerPort: 15090
              name: http-envoy-prom
              protocol: TCP
            readinessProbe:
              failureThreshold: 4
              httpGet:
                path: /healthz/ready
                port: 15021
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  10. cmd/callhome.go

    			healthInfo = hi
    		case <-healthCtx.Done():
    			return
    		}
    	}
    }
    
    const (
    	subnetHealthPath = "/api/health/upload"
    )
    
    func sendHealthInfo(ctx context.Context, healthInfo madmin.HealthInfo) error {
    	url := globalSubnetConfig.BaseURL + subnetHealthPath
    
    	filename := fmt.Sprintf("health_%s.json.gz", UTCNow().Format("20060102150405"))
    	url += "?filename=" + filename
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 17 16:53:34 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top