Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 49 of 49 for wsaioctl (0.2 sec)

  1. operator/cmd/mesh/manifest-generate_test.go

    func mergeWebhooks(whs ...[]v1.MutatingWebhook) []v1.MutatingWebhook {
    	res := []v1.MutatingWebhook{}
    	for _, wh := range whs {
    		res = append(res, wh...)
    	}
    	return res
    }
    
    const (
    	// istioctl manifest generate --set values.sidecarInjectorWebhook.useLegacySelectors=true
    	legacyDefaultInjector = `
    apiVersion: admissionregistration.k8s.io/v1
    kind: MutatingWebhookConfiguration
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  2. operator/pkg/controller/istiocontrolplane/istiocontrolplane_controller.go

    	"sigs.k8s.io/controller-runtime/pkg/predicate"
    	"sigs.k8s.io/controller-runtime/pkg/reconcile"
    	"sigs.k8s.io/controller-runtime/pkg/source"
    	"sigs.k8s.io/yaml"
    
    	"istio.io/api/operator/v1alpha1"
    	revtag "istio.io/istio/istioctl/pkg/tag"
    	"istio.io/istio/operator/pkg/apis/istio"
    	iopv1alpha1 "istio.io/istio/operator/pkg/apis/istio/v1alpha1"
    	"istio.io/istio/operator/pkg/cache"
    	"istio.io/istio/operator/pkg/helm"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  3. pkg/kube/util.go

    	if len(p) == 0 {
    		return "unknown"
    	}
    	return filepath.Base(p)
    }
    
    // IstioUserAgent returns the user agent string based on the command being used.
    // example: pilot-discovery/1.9.5 or istioctl/1.10.0
    // This is a specialized version of rest.DefaultKubernetesUserAgent()
    func IstioUserAgent() string {
    	return adjustCommand(os.Args[0]) + "/" + istioversion.Info.Version
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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 (1)
  9. 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