Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 312 for It (0.03 sec)

  1. pkg/config/analysis/msg/messages.yaml

        description: "A namespace is not enabled for Istio injection."
        template: "The namespace is not enabled for Istio injection. Run 'kubectl label namespace %s istio-injection=enabled' to enable it, or 'kubectl label namespace %s istio-injection=disabled' to explicitly mark it as not needing injection."
        args:
          - name: namespace
            type: string
          - name: namespace2
            type: string
    
      - name: "PodMissingProxy"
        code: IST0103
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  2. istioctl/cmd/root.go

    		// TODO(hanxiaop): I think experimental version still has issues, so we keep the old version for now.
    		version.XdsVersionCommand(ctx),
    		// TODO(hanxiaop): this is kept for some releases in case someone is using it.
    		proxystatus.XdsStatusCommand(ctx),
    	}
    	troubleshootingCommands := []*cobra.Command{
    		version.NewVersionCommand(ctx),
    		proxystatus.StableXdsStatusCommand(ctx),
    	}
    	var debugCmdAttachmentPoint *cobra.Command
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. operator/cmd/mesh/install.go

    		return fmt.Errorf("errors occurred during operation")
    	}
    
    	// Previously we may install IOP file from the old version of istioctl. Now since we won't install IOP file
    	// anymore, and it didn't provide much value, we can delete it if it exists.
    	reconciler.DeleteIOPInClusterIfExists(iop)
    
    	opts.ProgressLog.SetState(progress.StateComplete)
    
    	return nil
    }
    
    func savedIOPName(iop *v1alpha12.IstioOperator) string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  4. samples/extauthz/cmd/extauthz/main.go

    	<-sigs
    }
    
    func returnIfNotTooLong(body string) string {
    	// Maximum size of a header accepted by Envoy is 60KiB, so when the request body is bigger than 60KB,
    	// we don't return it in a response header to avoid rejecting it by Envoy and returning 431 to the client
    	if len(body) > 60000 {
    		return "<too-long>"
    	}
    	return body
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 15 18:23:48 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. pkg/kube/inject/template.go

    			return excludedInboundPorts
    		}
    		port = strings.TrimSpace(port)
    		if len(port) > 0 {
    			outPorts = append(outPorts, port)
    		}
    	}
    
    	// The port was not already excluded - exclude it now.
    	outPorts = append(outPorts, portStr)
    	return strings.Join(outPorts, ",")
    }
    
    func valueOrDefault(value any, defaultValue any) any {
    	if value == "" || value == nil {
    		return defaultValue
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 16 02:12:03 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  6. pilot/pkg/security/authz/builder/extauthz.go

    		}
    	}
    	checkWildcard := func(field string, values []string) {
    		for _, val := range values {
    			if val == "*" {
    				errs = multierror.Append(errs, fmt.Errorf("a single wildcard (\"*\") is not supported, change it to either prefix or suffix match: %s", field))
    			}
    		}
    	}
    	checkWildcard("IncludeRequestHeadersInCheck", config.IncludeRequestHeadersInCheck)
    	//nolint: staticcheck
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. pilot/pkg/autoregistration/controller_test.go

    	stop := test.NewStop(t)
    
    	c := NewController(store, "pilot-x", keepalive.Infinity)
    	go c.Run(stop)
    
    	proxy := fakeProxySuitableForHealthChecks(weB)
    	// change proxy metadata to make it unsuitable for health checks
    	proxy.Metadata.WorkloadEntry = "non-exisiting-workload-entry"
    
    	err := c.OnConnect(makeConn(proxy, time.Now()))
    	assert.Error(t, err)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  8. pkg/kube/inject/inject_test.go

    	"istio.io/istio/pkg/platform"
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/util/assert"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // TestInjection tests both the mutating webhook and kube-inject. It does this by sharing the same input and output
    // test files and running through the two different code paths.
    func TestInjection(t *testing.T) {
    	type testCase struct {
    		in            string
    		want          string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/batch/v1/generated.proto

      // first time it is resumed. This field is reset every time a Job is resumed
      // from suspension. It is represented in RFC3339 form and is in UTC.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.Time startTime = 2;
    
      // Represents time when the job was completed. It is not guaranteed to
      // be set in happens-before order across separate operations.
      // It is represented in RFC3339 form and is in UTC.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  10. pilot/pkg/model/context.go

    	NetworkManager *NetworkManager
    
    	// mutex used for protecting Environment.pushContext
    	mutex sync.RWMutex
    	// pushContext holds information during push generation. It is reset on config change, at the beginning
    	// of the pushAll. It will hold all errors and stats and possibly caches needed during the entire cache computation.
    	// DO NOT USE EXCEPT FOR TESTS AND HANDLING OF NEW CONNECTIONS.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (1)
Back to top