Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 394 for Healthy (0.23 sec)

  1. pkg/kube/inject/testdata/inject/proxy-override.yaml.injected

            proxy.istio.io/overrides: '{"containers":[{"name":"istio-proxy","resources":{"limits":{"cpu":"3"},"requests":{"cpu":"123m"}},"volumeMounts":[{"name":"certs","mountPath":"/etc/certs"}],"livenessProbe":{"httpGet":{"path":"/healthz/ready","port":15021},"initialDelaySeconds":10,"timeoutSeconds":3,"periodSeconds":2,"failureThreshold":30},"lifecycle":{"preStop":{"exec":{"command":["sleep","10"]}}},"terminationMessagePath":"/foo/bar","securityContext":{"runAsUser":1234,"runAsGr...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/HealthExpirationStrategy.java

    import org.gradle.launcher.daemon.server.expiry.DaemonExpirationStatus;
    import org.gradle.launcher.daemon.server.expiry.DaemonExpirationStrategy;
    import org.gradle.launcher.daemon.server.health.gc.GarbageCollectionStats;
    import org.gradle.launcher.daemon.server.health.gc.GarbageCollectorMonitoringStrategy;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import java.util.ArrayList;
    import java.util.List;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/WorkerDaemonExpirationTest.groovy

    import org.gradle.process.internal.health.memory.DefaultMBeanAttributeProvider
    import org.gradle.process.internal.health.memory.JvmMemoryStatus
    import org.gradle.process.internal.health.memory.MBeanOsMemoryInfo
    import org.gradle.process.internal.health.memory.MaximumHeapHelper
    import org.gradle.process.internal.health.memory.MemoryAmount
    import org.gradle.process.internal.health.memory.MemoryManager
    import spock.lang.Specification
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:56:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/kube/testdata/proxyless.yaml

              periodSeconds: 2
              failureThreshold: 10
            livenessProbe:
              tcpSocket:
                port: tcp-health-port
              initialDelaySeconds: 10
              periodSeconds: 10
              failureThreshold: 10
            startupProbe:
              tcpSocket:
                port: tcp-health-port
              periodSeconds: 1
              failureThreshold: 10
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. releasenotes/notes/32462.yaml

        * `--internal-ip` configures the VM workload with a private IP address used for workload auto registration and health probes.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 03 15:12:32 UTC 2021
    - 625 bytes
    - Viewed (0)
  6. releasenotes/notes/http2-probes.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issues:
    - 40173
    releaseNotes:
    - |
      **Added** support for ALPN negotiation to Istio [health checks](https://istio.io/latest/docs/ops/configuration/mesh/app-health-check/), mirroring
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 08 19:15:41 UTC 2022
    - 440 bytes
    - Viewed (0)
  7. cluster/gce/gci/master.yaml

        owner: root
        content: |
          [Unit]
          Description=Kubernetes health monitoring for container runtime
          After=kube-master-configuration.service
    
          [Service]
          Restart=always
          RestartSec=10
          RemainAfterExit=yes
          ExecStartPre=/bin/chmod 544 /home/kubernetes/bin/health-monitor.sh
          ExecStart=/home/kubernetes/bin/health-monitor.sh container-runtime
    
          [Install]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 12 16:22:20 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  8. manifests/charts/base/files/profile-demo.yaml

        ports:
        ## You can add custom gateway ports in user values overrides, but it must include those ports since helm replaces.
        # Note that AWS ELB will by default perform health checks on the first port
        # on this list. Setting this to the health check port will ensure that health
        # checks always work. https://github.com/istio/istio/issues/12503
        - port: 15021
          targetPort: 15021
          name: status-port
        - port: 80
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 22:30:06 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. manifests/charts/gateways/istio-ingress/files/profile-demo.yaml

        ports:
        ## You can add custom gateway ports in user values overrides, but it must include those ports since helm replaces.
        # Note that AWS ELB will by default perform health checks on the first port
        # on this list. Setting this to the health check port will ensure that health
        # checks always work. https://github.com/istio/istio/issues/12503
        - port: 15021
          targetPort: 15021
          name: status-port
        - port: 80
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 22:30:06 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/LowMemoryDaemonExpirationStrategy.java

    package org.gradle.launcher.daemon.server.health;
    
    import com.google.common.base.Preconditions;
    import org.gradle.api.logging.Logger;
    import org.gradle.api.logging.Logging;
    import org.gradle.internal.util.NumberUtil;
    import org.gradle.launcher.daemon.server.expiry.DaemonExpirationResult;
    import org.gradle.launcher.daemon.server.expiry.DaemonExpirationStrategy;
    import org.gradle.process.internal.health.memory.OsMemoryStatusAspect;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top