Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 359 for prober (0.27 sec)

  1. pkg/probe/grpc/grpc_test.go

    	"github.com/stretchr/testify/assert"
    	"google.golang.org/grpc"
    	grpchealth "google.golang.org/grpc/health/grpc_health_v1"
    
    	"k8s.io/kubernetes/pkg/probe"
    )
    
    func TestNew(t *testing.T) {
    	t.Run("Should: implement Probe interface", func(t *testing.T) {
    		s := New()
    		assert.Implements(t, (*Prober)(nil), s)
    	})
    }
    
    type successServerMock struct {
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 20 00:23:53 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  2. pkg/kubelet/runonce_test.go

    	kb.volumePluginMgr, err =
    		NewInitializedVolumePluginMgr(kb, fakeSecretManager, fakeConfigMapManager, nil, clusterTrustBundleManager, []volume.VolumePlugin{plug}, nil /* prober */)
    	if err != nil {
    		t.Fatalf("failed to initialize VolumePluginMgr: %v", err)
    	}
    	kb.volumeManager = volumemanager.NewVolumeManager(
    		true,
    		kb.nodeName,
    		kb.podManager,
    		kb.podWorkers,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 06:59:54 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. pkg/kubemark/hollow_kubelet.go

    	"k8s.io/kubernetes/pkg/kubelet/cadvisor"
    	"k8s.io/kubernetes/pkg/kubelet/cm"
    	containertest "k8s.io/kubernetes/pkg/kubelet/container/testing"
    	probetest "k8s.io/kubernetes/pkg/kubelet/prober/testing"
    	kubetypes "k8s.io/kubernetes/pkg/kubelet/types"
    	kubeletutil "k8s.io/kubernetes/pkg/kubelet/util"
    	"k8s.io/kubernetes/pkg/util/oom"
    	"k8s.io/kubernetes/pkg/volume"
    	"k8s.io/kubernetes/pkg/volume/configmap"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:10:54 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. releasenotes/notes/agent-probe-keepalives.yaml

    releaseNotes:
    - |
      **Improved** istio-agent health probe rewrite to not re-use connections, mirring Kubernetes' probing behavior.
    
    upgradeNotes:
    - title: Health Probes will no longer re-use connections
      content: |
        Health probes using the istio-agent [health probe rewrite](https://istio.io/latest/docs/ops/configuration/mesh/app-health-check/) will
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 07 20:06:21 UTC 2021
    - 963 bytes
    - Viewed (0)
  5. staging/src/k8s.io/client-go/applyconfigurations/core/v1/probe.go

    	TerminationGracePeriodSeconds  *int64 `json:"terminationGracePeriodSeconds,omitempty"`
    }
    
    // ProbeApplyConfiguration constructs an declarative configuration of the Probe type for use with
    // apply.
    func Probe() *ProbeApplyConfiguration {
    	return &ProbeApplyConfiguration{}
    }
    
    // WithExec sets the Exec field in the declarative configuration to the given value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 17 17:31:23 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  6. pkg/probe/probe.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package probe
    
    // Result is a string used to handle the results for probing container readiness/liveness
    type Result string
    
    const (
    	// Success Result
    	Success Result = "success"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:20:50 UTC 2019
    - 966 bytes
    - Viewed (0)
  7. releasenotes/notes/http2-probes.yaml

    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)
  8. releasenotes/notes/probe-redirect.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
    - 34238
    - 29468
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 04 21:48:40 UTC 2021
    - 179 bytes
    - Viewed (0)
  9. releasenotes/notes/grpc-probe.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 08 02:37:58 UTC 2022
    - 127 bytes
    - Viewed (0)
  10. pkg/kube/apimirror/probe.go

    	URISchemeHTTP URIScheme = "HTTP"
    	// URISchemeHTTPS means that the scheme used will be https://
    	URISchemeHTTPS URIScheme = "HTTPS"
    )
    
    // HTTPHeader describes a custom header to be used in HTTP probes
    type HTTPHeader struct {
    	// The header field name
    	Name string `json:"name" protobuf:"bytes,1,opt,name=name"`
    	// The header field value
    	Value string `json:"value" protobuf:"bytes,2,opt,name=value"`
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top