Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for interactive (0.22 sec)

  1. cni/pkg/cmd/root.go

    	registerStringParameter(constants.KubeconfigFilename, "ZZZ-istio-cni-kubeconfig",
    		"Name of the kubeconfig file which CNI plugin will use when interacting with API server")
    	registerIntegerParameter(constants.KubeconfigMode, constants.DefaultKubeconfigMode, "File mode of the kubeconfig file")
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Apr 30 22:24:38 GMT 2024
    - 12.5K bytes
    - Viewed (0)
  2. operator/cmd/mesh/manifest-generate_test.go

        matchExpressions:
        - key: "sidecar.istio.io/inject"
          operator: NotIn
          values:
          - "false"
    `
    )
    
    // This test checks the mutating webhook selectors behavior, especially with interaction with revisions
    func TestWebhookSelector(t *testing.T) {
    	// Setup various labels to be tested
    	empty := klabels.Set{}
    	revLabel := klabels.Set{"istio.io/rev": "canary"}
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Thu Feb 22 08:32:23 GMT 2024
    - 42K bytes
    - Viewed (0)
  3. operator/README.md

    from the in-cluster IstioOperator custom resource (CR).
    There are two major differences:
    
    1. The controller does not accept any dynamic user config through flags. All user interaction is through the
    IstioOperator CR.
    1. The controller has additional logic that mirrors istioctl commands like upgrade, but is driven from the declarative
    API rather than command line.
    
    ### Quick tour of CLI commands
    Plain Text
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Sun Sep 17 08:27:52 GMT 2023
    - 17.5K bytes
    - Viewed (0)
  4. istioctl/pkg/authz/authz.go

    	if err := envoyConfig.UnmarshalJSON(data); err != nil {
    		return nil, fmt.Errorf("failed to unmarshal proxy config: %s", err)
    	}
    	return envoyConfig, nil
    }
    
    // AuthZ groups commands used for inspecting and interacting the authorization policy.
    // Note: this is still under active development and is not ready for real use.
    func AuthZ(ctx cli.Context) *cobra.Command {
    	cmd := &cobra.Command{
    		Use:   "authz",
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Sat Apr 13 05:23:38 GMT 2024
    - 5K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/apidiscovery/v2beta1/generated.proto

      // delete, deletecollection, and proxy). Subresources may define
      // custom verbs outside the standard Kubernetes verb set. Clients
      // should expect the behavior of standard verbs to align with
      // Kubernetes interaction conventions.
      // +listType=set
      repeated string verbs = 4;
    }
    
    // APIVersionDiscovery holds a list of APIResourceDiscovery types that are served for a particular version within an API Group.
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 7.8K bytes
    - Viewed (0)
Back to top