Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 184 for Present (0.11 sec)

  1. tests/integration/telemetry/api/dashboard_test.go

    				d := d
    				t.NewSubTest(d.name).Run(func(t framework.TestContext) {
    					for _, cl := range t.Clusters() {
    						if !cl.IsPrimary() && d.requirePrimary {
    							// Skip verification of dashboards that won't be present on non primary(remote) clusters.
    							continue
    						}
    						t.Logf("Verifying %s for cluster %s", d.name, cl.Name())
    						cm, err := cl.Kube().CoreV1().ConfigMaps(ist.Settings().TelemetryNamespace).Get(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. operator/cmd/mesh/manifest-generate_test.go

    			if _, err := os.Stat(dest); err != nil {
    				if err := os.Mkdir(dest, 0o755); err != nil {
    					return fmt.Errorf("mkdir: %v", err)
    				}
    			}
    		case tar.TypeReg:
    			// Create containing folder if not present
    			dir := path.Dir(dest)
    			if _, err := os.Stat(dir); err != nil {
    				if err := os.MkdirAll(dir, 0o755); err != nil {
    					return err
    				}
    			}
    			outFile, err := os.Create(dest)
    			if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/authorization/v1beta1/generated.proto

      // It is entirely possible to get an error and be able to continue determine authorization status in spite of it.
      // For instance, RBAC can be missing a role, but enough roles are still present and bound to reason about the request.
      // +optional
      optional string evaluationError = 3;
    }
    
    // SubjectRulesReviewStatus contains the result of a rules check. This check can be incomplete depending on
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  4. tools/bug-report/pkg/bugreport/bugreport.go

    		pclog, err := runner.Logs(namespace, pod, container, true, config.DryRun)
    		if err != nil {
    			return "", nil, 0, err
    		}
    		clog = "========= Previous log present (appended at the end) =========\n\n" + clog +
    			"\n\n========= Previous log =========\n\n" + pclog
    	}
    	var cstat *processlog.Stats
    	clog, cstat = processlog.Process(config, clog)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 20:57:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener_inbound.go

    	// only configures TLS overrides.
    	tlsSettings *networking.ServerTLSSettings
    
    	// passthrough should be set to true for the 'passthrough' chains, which are the chains always
    	// present to handle all unmatched traffic. These have a few naming and quirks that require
    	// different configuration.
    	passthrough bool
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/dependencies/implementation_linux.go

    	// Note that this is highly dependent on context.
    	// new pod netns? probably no rules. Hostnetns? probably rules
    	// So this is mostly just a "hint"/heuristic as to which version we should be using, if more than one binary is present.
    	// `xx-save` should return _no_ output (0 lines) if no rules are defined in this netns for that binary variant.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 20:49:10 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                        type: string
                                      sni:
                                        description: SNI string to present to the server
                                          during TLS handshake.
                                        type: string
                                      subjectAltNames:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  8. pilot/pkg/model/service.go

    	LegacyClusterPortKey int
    
    	// ServiceAccount holds the associated service account.
    	ServiceAccount string
    
    	// Network holds the network where this endpoint is present
    	Network network.ID
    
    	// The locality where the endpoint is present.
    	Locality Locality
    
    	// EndpointPort is the port where the workload is listening, can be different
    	// from the service port.
    	EndpointPort uint32
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  9. pilot/pkg/credentials/kube/secrets_test.go

    		{"generic-mtls-split", "default", "remote", "generic-mtls-split-cert", "generic-mtls-split-key", ""},
    		{"generic-mtls-split-cacert", "default", "remote", "", "", "generic-mtls-split-ca"},
    		// This is present in local and remote, but with a different value. We have the remote.
    		{"tls", "default", "remote", "tls-cert-mod", "tls-key", ""},
    		{"tls-mtls", "default", "remote", "tls-mtls-cert", "tls-mtls-key", "tls-mtls-ca"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 19:18:21 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/admissionregistration/v1alpha1/generated.proto

      // Since messageExpression is used as a failure message, it must evaluate to a string.
      // If both message and messageExpression are present on a validation, then messageExpression will be used if validation fails.
      // If messageExpression results in a runtime error, the runtime error is logged, and the validation failure message is produced
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.7K bytes
    - Viewed (0)
Back to top