Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 56 for wsaioctl (0.14 sec)

  1. pilot/pkg/status/distribution/reporter.go

    const (
    	labelKey  = "internal.istio.io/distribution-report"
    	dataField = "distribution-report"
    )
    
    // Init starts all the read only features of the reporter, used for nonce generation
    // and responding to istioctl wait.
    func (r *Reporter) Init(ledger ledger.Ledger, stop <-chan struct{}) {
    	r.ledger = ledger
    	if r.clock == nil {
    		r.clock = clock.RealClock{}
    	}
    	r.distributionEventQueue = make(chan distributionEvent, 100_000)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. pilot/pkg/features/pilot.go

    	InjectionWebhookConfigName = env.Register("INJECTION_WEBHOOK_CONFIG_NAME", "istio-sidecar-injector",
    		"Name of the mutatingwebhookconfiguration to patch, if istioctl is not used.").Get()
    
    	ValidationWebhookConfigName = env.Register("VALIDATION_WEBHOOK_CONFIG_NAME", "istio-istio-system",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. istioctl/pkg/tag/generate.go

    	// since they are functioned differently with different name.
    	// The filtered common labels are then added to the incoming generated
    	// webhooks, which aids in managing these webhooks via the istioctl/operator.
    	filteredLabels := make(map[string]string)
    	for k, v := range wh.Labels {
    		if k != "app" {
    			filteredLabels[k] = v
    		}
    	}
    
    	return &tagWebhookConfig{
    		Tag:            tagName,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 17:43:49 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  4. pkg/test/framework/components/istio/config.go

    	// Indicates that the test should deploy Istio's east west gateway into the target Kubernetes cluster
    	// before running tests.
    	DeployEastWestGW bool
    
    	// DumpKubernetesManifests will cause Kubernetes YAML generated by istioctl install/generate to be dumped to artifacts.
    	DumpKubernetesManifests bool
    
    	// IstiodlessRemotes makes remote clusters run without istiod, using webhooks/ca from the primary cluster.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. operator/pkg/verifier/verifier.go

    	"k8s.io/client-go/dynamic"
    	"k8s.io/client-go/kubernetes/scheme"
    	"sigs.k8s.io/controller-runtime/pkg/client"
    
    	"istio.io/api/label"
    	operatprv1alpha1 "istio.io/api/operator/v1alpha1"
    	"istio.io/istio/istioctl/pkg/clioptions"
    	operator_istio "istio.io/istio/operator/pkg/apis/istio"
    	"istio.io/istio/operator/pkg/apis/istio/v1alpha1"
    	"istio.io/istio/operator/pkg/controlplane"
    	"istio.io/istio/operator/pkg/helmreconciler"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. cni/README.md

            - Pod has `istio-init` initContainer - this indicates a pod running its own injection setup.
    1. Return prevResult
    
    ## Troubleshooting
    
    ### Collecting Logs
    
    #### Using `istioctl`/helm
    
    - Set: `values.global.logging.level="cni:debug,ambient:debug"`
    - Inspect the pod logs of a `istio-cni` Daemonset pod on a specific node.
    
    #### From a specific node syslog
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  7. pkg/kube/client.go

    	Shutdown()
    
    	// ClusterID returns the cluster this client is connected to
    	ClusterID() cluster.ID
    }
    
    // CLIClient is an extended client with additional helpers/functionality for Istioctl and testing.
    // CLIClient is not appropriate for controllers, as it does a number of highly privileged or highly risky operations
    // such as `exec`, `port-forward`, etc.
    type CLIClient interface {
    	Client
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 39K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top