Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 385 for It (0.17 sec)

  1. manifests/charts/istio-operator/Chart.yaml

    apiVersion: v2
    name: istio-operator
    # 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
    description: Helm chart for deploying Istio operator
    keywords:
      - istio
      - operator
    sources:
      - https://github.com/istio/istio/tree/master/operator
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 18:29:34 UTC 2024
    - 404 bytes
    - Viewed (0)
  2. operator/pkg/controller/istiocontrolplane/istiocontrolplane_controller.go

    		return nil, err
    	}
    
    	return istio.UnmarshalAndValidateIOPS(mergedYAMLSpec)
    }
    
    // Add creates a new IstioOperator Controller and adds it to the Manager. The Manager will set fields on the Controller
    // and Start it when the Manager is Started. It also provides additional options to modify internal reconciler behavior.
    func Add(mgr manager.Manager, options *Options) error {
    	restConfig = mgr.GetConfig()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/crdclient/client_test.go

    				if cfg == nil || !reflect.DeepEqual(cfg.Meta, configMeta) {
    					return fmt.Errorf("get(%v) => got unexpected object %v", name, cfg)
    				}
    				return nil
    			}, timeout)
    
    			// Validate it shows up in List
    			retry.UntilSuccessOrFail(t, func() error {
    				cfgs := store.List(r.GroupVersionKind(), configMeta.Namespace)
    				if len(cfgs) != 1 {
    					return fmt.Errorf("expected 1 config, got %v", len(cfgs))
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 02:58:52 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/deployment/builder.go

    	errs error
    }
    
    func (b *builder) WithConfig(cfg echo.Config) Builder {
    	return b.With(nil, cfg)
    }
    
    // With adds a new Echo configuration to the Builder. When a cluster is provided in the Config, it will only be applied
    // to that cluster, otherwise the Config is applied to all WithClusters. Once built, if being built for a single cluster,
    // the instance pointer will be updated to point at the new Instance.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. tests/integration/pilot/piggyback_test.go

    						output, _, err := istioCtl.Invoke(args.args)
    						if err != nil {
    							return err
    						}
    
    						// Just verify pod A is known to Pilot; implicitly this verifies that
    						// the printing code printed it.
    						if err := expectSubstrings(output, fmt.Sprintf("%s.%s", podName, namespace)); err != nil {
    							return err
    						}
    					}
    					return nil
    				})
    
    				// Test gRPC-based --xds-via-agents
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. pilot/pkg/model/gateway.go

    						}
    
    						// We have TLS settings defined and we have already taken care of unique route names
    						// if it is HTTPS. So we can construct a QUIC server on the same port. It is okay as
    						// QUIC listens on UDP port, not TCP
    						if features.EnableQUICListeners && gateway.IsEligibleForHTTP3Upgrade(s) &&
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  7. common/config/.hadolint.yml

    # If you're looking at this file in a different repo and want to make a change, please go to the
    # common-files repo, make the change there and check it in. Then come back to this repo and run
    # "make update-common".
    
    ignored:
      - DL3008
      - DL3059
    
    trustedRegistries:
      - gcr.io
      - docker.io
      - quay.io
      - "*.pkg.dev"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 22:55:57 UTC 2024
    - 489 bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/network.go

    // and if it is, updates the controller's gateways.
    func (c *Controller) extractGatewaysFromService(svc *model.Service) bool {
    	changed := c.extractGatewaysInner(svc)
    	if changed {
    		c.NotifyGatewayHandlers()
    	}
    	return changed
    }
    
    // reloadNetworkGateways performs extractGatewaysFromService for all services registered with the controller.
    // It is called only by `onNetworkChange`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 22:23:22 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  9. istioctl/pkg/describe/describe.go

    }
    
    // describePeerAuthentication fetches all PeerAuthentication in workload and root namespace.
    // It lists the ones applied to the pod, and the current active mTLS mode.
    // When the client doesn't have access to root namespace, it will only show workload namespace Peerauthentications.
    func describePeerAuthentication(
    	writer io.Writer,
    	kubeClient kube.CLIClient,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  10. prow/config/calico.yaml

                      connect-time load balancer is required for the host to be able to
                      reach Kubernetes services and it improves the performance of pod-to-service
                      connections.  The only reason to disable it is for debugging purposes.
                      This will be deprecated. Use BPFConnectTimeLoadBalancing [Default:
                      true]'
                    type: boolean
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
Back to top