Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for runcom (0.19 sec)

  1. istioctl/pkg/proxystatus/proxystatus_test.go

    			args:          strings.Split("deployment/random-gibberish", " "),
    			wantException: true,
    		},
    		{ // case 3: supplying nonexistent deployment name
    			args:          strings.Split("deployment/random-gibberish.default", " "),
    			wantException: true,
    		},
    		{ // case 4: supplying nonexistent deployment name in nonexistent namespace
    			args:          strings.Split("deployment/random-gibberish.bogus", " "),
    			wantException: true,
    		},
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 08:28:50 GMT 2024
    - 5.5K bytes
    - Viewed (0)
  2. istioctl/pkg/tag/generate_test.go

    					Service: &admitv1.ServiceReference{
    						Namespace: "default",
    						Name:      "istiod-revision",
    					},
    					CABundle: []byte("ca"),
    				},
    			},
    		},
    	}
    	remoteInjectionURL             = "https://random.host.com/inject/cluster/cluster1/net/net1"
    	revisionCanonicalWebhookRemote = admitv1.MutatingWebhookConfiguration{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:   "istio-sidecar-injector-revision",
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Jan 16 17:43:49 GMT 2024
    - 12.1K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/node/v1beta1/generated.proto

      // are specific to the node & CRI configuration.  It is assumed that all
      // handlers are available on every node, and handlers of the same name are
      // equivalent on every node.
      // For example, a handler called "runc" might specify that the runc OCI
      // runtime (using native Linux containers) will be used to run the containers
      // in a pod.
      // The handler must be lowercase, conform to the DNS Label (RFC 1123) requirements,
      // and is immutable.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 4.4K bytes
    - Viewed (0)
  4. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                  description: |2-
    
    
                                    Valid Options: LEAST_CONN, RANDOM, PASSTHROUGH, ROUND_ROBIN, LEAST_REQUEST
                                  enum:
                                  - UNSPECIFIED
                                  - LEAST_CONN
                                  - RANDOM
                                  - PASSTHROUGH
                                  - ROUND_ROBIN
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 18:46:49 GMT 2024
    - 570.3K bytes
    - Viewed (0)
  5. istioctl/pkg/proxyconfig/testdata/config_dump.json

                            ],
                            "tracing": {
                              "client_sampling": {
                                "value": 100
                              },
                              "random_sampling": {
                                "value": 100
                              },
                              "overall_sampling": {
                                "value": 100
                              },
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Jan 03 23:08:06 GMT 2024
    - 54.8K bytes
    - Viewed (1)
  6. istioctl/pkg/writer/compare/testdata/configdump_diff.json

                            ],
                            "tracing": {
                              "client_sampling": {
                                "value": 100
                              },
                              "random_sampling": {
                                "value": 1
                              },
                              "overall_sampling": {
                                "value": 100
                              },
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Mar 12 10:02:09 GMT 2024
    - 51.6K bytes
    - Viewed (0)
  7. istioctl/pkg/dashboard/dashboard.go

    	client kube.CLIClient, writer io.Writer, browser bool,
    ) error {
    	// port preference:
    	// - If --listenPort is specified, use it
    	// - without --listenPort, prefer the remotePort but fall back to a random port
    	var portPrefs []int
    	if listenPort != 0 {
    		portPrefs = []int{listenPort}
    	} else {
    		portPrefs = []int{remotePort, 0}
    	}
    
    	var err error
    	for _, localPort := range portPrefs {
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Apr 15 01:29:35 GMT 2024
    - 20.5K bytes
    - Viewed (0)
  8. common/scripts/metallb-native.yaml

                      by priority, starting from the highest to the lowest. If multiple
                      IPAddressPools have the same priority, choice will be random.
                    properties:
                      namespaceSelectors:
                        description: NamespaceSelectors list of label selectors to select
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Feb 23 23:56:31 GMT 2024
    - 63.9K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/core/v1/generated.proto

    message PodSecurityContext {
      // The SELinux context to be applied to all containers.
      // If unspecified, the container runtime will allocate a random SELinux context for each
      // container.  May also be set in SecurityContext.  If set in
      // both SecurityContext and PodSecurityContext, the value specified in SecurityContext
      // takes precedence for that container.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 255.8K bytes
    - Viewed (0)
  10. istioctl/pkg/proxyconfig/proxyconfig_test.go

    			args:           strings.Split("clusters deployment/random-gibberish", " "),
    			expectedString: `"deployment/random-gibberish" does not refer to a pod`,
    			wantException:  true,
    		},
    		{ // supplying nonexistent deployment name in nonexistent namespace
    			args:           strings.Split("endpoint deployment/random-gibberish.bogus", " "),
    			expectedString: `"deployment/random-gibberish" does not refer to a pod`,
    			wantException:  true,
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Apr 10 21:51:29 GMT 2024
    - 8.9K bytes
    - Viewed (0)
Back to top