Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 403 for statusPort (0.31 sec)

  1. pkg/kube/inject/app_probe.go

    func convertAppProber(probe *corev1.Probe, newURL string, statusPort int) *corev1.Probe {
    	if probe == nil {
    		return nil
    	}
    	if probe.HTTPGet != nil {
    		return convertAppProberHTTPGet(probe, newURL, statusPort)
    	} else if probe.TCPSocket != nil {
    		return convertAppProberTCPSocket(probe, newURL, statusPort)
    	} else if probe.GRPC != nil {
    		return convertAppProberGRPC(probe, newURL, statusPort)
    	}
    
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 04 15:06:24 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  2. pkg/kube/inject/app_probe_test.go

    									HTTPGet: &corev1.HTTPGetAction{
    										Path: "/app-health/foo/livez",
    										Port: statusPort,
    									},
    								},
    							},
    							ReadinessProbe: &corev1.Probe{
    								ProbeHandler: corev1.ProbeHandler{
    									HTTPGet: &corev1.HTTPGetAction{
    										Path: "/app-health/foo/readyz",
    										Port: statusPort,
    									},
    								},
    								TimeoutSeconds: 10,
    							},
    						},
    						{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 04 15:06:24 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  3. pilot/cmd/pilot-agent/status/server_test.go

    	})
    	statusPort := server.statusPort
    	t.Logf("status server starts at port %v, app starts at port %v", statusPort, appPort)
    
    	testCases := []struct {
    		name       string
    		probePath  string
    		statusCode int
    	}{
    		{
    			name:       "bad-path-should-be-disallowed",
    			probePath:  fmt.Sprintf(":%v/bad-path-should-be-disallowed", statusPort),
    			statusCode: http.StatusNotFound,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  4. pkg/kube/inject/testdata/inject/status_annotations.yaml.injected

            - name: ISTIO_META_INTERCEPTION_MODE
              value: REDIRECT
            - name: ISTIO_META_WORKLOAD_NAME
              value: statusPort
            - name: ISTIO_META_OWNER
              value: kubernetes://apis/apps/v1/namespaces/default/deployments/statusPort
            - name: ISTIO_META_MESH_ID
              value: cluster.local
            - name: TRUST_DOMAIN
              value: cluster.local
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. pkg/kube/inject/testdata/inject/status_annotations_zeroport.yaml.injected

            - name: ISTIO_META_INTERCEPTION_MODE
              value: REDIRECT
            - name: ISTIO_META_WORKLOAD_NAME
              value: statusPort
            - name: ISTIO_META_OWNER
              value: kubernetes://apis/apps/v1/namespaces/default/deployments/statusPort
            - name: ISTIO_META_MESH_ID
              value: cluster.local
            - name: TRUST_DOMAIN
              value: cluster.local
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. pkg/kube/inject/testdata/inject/status_params.yaml.injected

            - name: ISTIO_META_INTERCEPTION_MODE
              value: REDIRECT
            - name: ISTIO_META_WORKLOAD_NAME
              value: statusPort
            - name: ISTIO_META_OWNER
              value: kubernetes://apis/apps/v1/namespaces/default/deployments/statusPort
            - name: ISTIO_META_MESH_ID
              value: cluster.local
            - name: TRUST_DOMAIN
              value: cluster.local
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. pilot/cmd/pilot-agent/options/statusserver.go

    	return &status.Options{
    		IPv6:           ipv6,
    		PodIP:          InstanceIPVar.Get(),
    		AdminPort:      uint16(proxyConfig.ProxyAdminPort),
    		StatusPort:     uint16(proxyConfig.StatusPort),
    		KubeAppProbers: kubeAppProberNameVar.Get(),
    		NodeType:       t,
    		Probes:         []ready.Prober{agent},
    		NoEnvoy:        agent.EnvoyDisabled(),
    		FetchDNS:       agent.GetDNSTable,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 23:51:52 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. pkg/kube/inject/testdata/inject/status_params.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: statusPort
    spec:
      replicas: 7
      selector:
        matchLabels:
          app: status
      template:
        metadata:
          labels:
            app: status
        spec:
          containers:
          - name: status
            image: "fake.docker.io/google-samples/traffic-go-gke:1.0"
            ports:
            - name: http
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 16 01:43:48 UTC 2019
    - 372 bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-with-revision-canary.yaml

            - {{ valueOrDefault .Values.global.proxy.dnsRefreshRate "300s" }}
          {{- if (ne (annotation .ObjectMeta "status.sidecar.istio.io/port" .Values.global.proxy.statusPort) "0") }}
            - --statusPort
            - "{{ annotation .ObjectMeta `status.sidecar.istio.io/port` .Values.global.proxy.statusPort }}"
            - --applicationPorts
            - "{{ annotation .ObjectMeta `readiness.status.sidecar.istio.io/applicationPorts` (applicationPorts .Spec.Containers) }}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/testdata/common/sidecar-injector-configmap.yaml

            - {{ valueOrDefault .Values.global.proxy.dnsRefreshRate "300s" }}
          {{- if (ne (annotation .ObjectMeta "status.sidecar.istio.io/port" .Values.global.proxy.statusPort) "0") }}
            - --statusPort
            - "{{ annotation .ObjectMeta `status.sidecar.istio.io/port` .Values.global.proxy.statusPort }}"
            - --applicationPorts
            - "{{ annotation .ObjectMeta `readiness.status.sidecar.istio.io/applicationPorts` (applicationPorts .Spec.Containers) }}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
Back to top