Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 56 of 56 for wsaioctl (0.14 sec)

  1. manifests/charts/istiod-remote/values.yaml

        caName: ""
        # whether to use autoscaling/v2 template for HPA settings
        # for internal usage only, not to be configured by users.
        autoscalingv2API: true
      base:
        # For istioctl usage to disable istio config crds in base
        enableIstioConfigCRDs: true
      # `istio_cni` has been deprecated and will be removed in a future release. use `pilot.cni` instead
      istio_cni:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  2. manifests/charts/istio-control/istio-discovery/values.yaml

        caName: ""
    
        # whether to use autoscaling/v2 template for HPA settings
        # for internal usage only, not to be configured by users.
        autoscalingv2API: true
    
      base:
        # For istioctl usage to disable istio config crds in base
        enableIstioConfigCRDs: true
    
      # `istio_cni` has been deprecated and will be removed in a future release. use `pilot.cni` instead
      istio_cni:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  3. pkg/config/analysis/local/istiod_analyze.go

    	// Code is the analysis code to suppress (e.g. "IST0104").
    	Code string
    
    	// ResourceName is the name of the resource to suppress the message for. For
    	// K8s resources it has the same form as used by istioctl (e.g.
    	// "DestinationRule default.istio-system"). Note that globbing wildcards are
    	// supported (e.g. "DestinationRule *.istio-system").
    	ResourceName string
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:06:13 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  4. pkg/kube/inject/inject.go

    	}
    
    	var patchBytes []byte
    	var err error
    	if injector != nil {
    		patchBytes, err = injector.Inject(pod, namespace)
    	}
    	if err != nil {
    		return nil, err
    	}
    	// TODO(Monkeyanator) istioctl injection still applies just the pod annotation since we don't have
    	// the ProxyConfig CRs here.
    	if pca, f := metadata.GetAnnotations()[annotation.ProxyConfig.Name]; f {
    		var merr error
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  5. pilot/cmd/pilot-agent/status/server.go

    	quitPath  = "/quitquitquit"
    	drainPath = "/drain"
    	// KubeAppProberEnvName is the name of the command line flag for pilot agent to pass app prober config.
    	// The json encoded string to pass app HTTP probe information from injector(istioctl or webhook).
    	// For example, ISTIO_KUBE_APP_PROBERS='{"/app-health/httpbin/livez":{"httpGet":{"path": "/hello", "port": 8080}}.
    	// indicates that httpbin container liveness prober port is 8080 and probing path is /hello.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  6. pilot/pkg/xds/debug.go

    			return
    		}
    		// TODO: Check that the identity contains istio-system namespace, else block or restrict to only info that
    		// is visible to the authenticated SA. Will require changes in docs and istioctl too.
    		next.ServeHTTP(w, req)
    	}
    }
    
    func isRequestFromLocalhost(r *http.Request) bool {
    	ip, _, err := net.SplitHostPort(r.RemoteAddr)
    	if err != nil {
    		return false
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
Back to top