Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 918 for It (0.05 sec)

  1. releasenotes/notes/gw-hostname-resolution.yaml

    releaseNotes:
      - |
        **Fixed** an issue where istiod does not retry resolving east-west gateway hostnames on failure.
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 07 16:17:56 UTC 2023
    - 370 bytes
    - Viewed (0)
  2. manifests/charts/gateway/Chart.yaml

    apiVersion: v2
    name: gateway
    description: Helm chart for deploying Istio gateways
    type: application
    
    # This version is never actually shipped. istio/release-builder will replace it at build-time
    # with the appropriate version
    version: 1.0.0
    appVersion: 1.0.0
    
    sources:
    - https://github.com/istio/istio
    icon: https://istio.io/latest/favicons/android-192x192.png
    keywords:
    - istio
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 21 01:23:27 UTC 2023
    - 389 bytes
    - Viewed (0)
  3. pkg/kube/multicluster/secretcontroller.go

    	c.handlers = append(c.handlers, h)
    }
    
    // Run starts the controller until it receives a message over stopCh
    func (c *Controller) Run(stopCh <-chan struct{}) error {
    	// run handlers for the config cluster; do not store this *Cluster in the ClusterStore or give it a SyncTimeout
    	// this is done outside the goroutine, we should block other Run/startFuncs until this is registered
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 02:13:10 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. samples/extauthz/README.md

    The Ext Authz server supports authorization check request using either HTTP (port 8000) or gRPC v2/v3 (port 9000) API and
    will allow the request if it includes the header `x-ext-authz: allow` or if the service account of the source workload is `a`.
    Note that `a` is just a default value for testing. It can be changed with the flag `-allow_service_account` when running the ext authz server.
    
    ## Usage
    
    1. Deploy the Ext Authz service in a dedicated pod:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 13:52:47 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/coordination/v1/generated.proto

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    
    // This file was autogenerated by go-to-protobuf. Do not edit it manually!
    
    syntax = "proto2";
    
    package k8s.io.api.coordination.v1;
    
    import "k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto";
    import "k8s.io/apimachinery/pkg/runtime/generated.proto";
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. releasenotes/notes/wasm-download-fallback.yaml

        Previously, the given wasm filter itself was passed to Envoy in the case, but it may cause the errors because some fields of Wasm configuration are optional in Istio, but not in Envoy....
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 02 21:41:25 UTC 2022
    - 453 bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/conditions.go

    	seen := map[k8s.ParentReference][]RouteParentResult{}
    	seenReasons := sets.New[ParentErrorReason]()
    	successCount := map[k8s.ParentReference]int{}
    	for _, incoming := range parentResults {
    		// We will append it if it is our first occurrence, or the existing one has an error. This means
    		// if *any* section has no errors, we will declare Admitted
    		if incoming.DeniedReason == nil {
    			successCount[incoming.OriginalReference]++
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 13:05:41 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  8. pilot/pkg/xds/endpoints/ep_filters.go

    	// Go through all cluster endpoints and add those with the same network as the sidecar
    	// to the result. Also count the number of endpoints per each remote network while
    	// iterating so that it can be used as the weight for the gateway endpoint
    	for _, ep := range endpoints {
    		lbEndpoints := &LocalityEndpoints{
    			llbEndpoints: endpoint.LocalityLbEndpoints{
    				Locality: ep.llbEndpoints.Locality,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. pkg/workloadapi/security/authorization.proto

      // workloads that were selected by their labels.
      WORKLOAD_SELECTOR = 2;
    }
    
    enum Action {
      // Allow the request if it matches with the rules.
      ALLOW = 0;
      // Deny the request if it matches with the rules.
      DENY = 1;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 20:45:12 UTC 2023
    - 3K bytes
    - Viewed (0)
  10. pkg/test/util/tmpl/evaluate.go

    // limitations under the License.
    
    package tmpl
    
    import (
    	"fmt"
    
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/util/file"
    )
    
    // Evaluate parses the template and then executes it with the given parameters.
    func Evaluate(tpl string, data any) (string, error) {
    	t, err := Parse(tpl)
    	if err != nil {
    		return "", err
    	}
    
    	return Execute(t, data)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 3.1K bytes
    - Viewed (0)
Back to top