Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 172 for subkeys (0.41 sec)

  1. pkg/config/validation/validation_test.go

    			Host: "reviews",
    			Subsets: []*networking.Subset{
    				{Name: "v1", Labels: map[string]string{"version": "v1"}},
    				{Name: "v2", Labels: map[string]string{"version": "v2"}},
    			},
    		}, valid: true},
    
    		{name: "simple destination rule with empty selector labels", in: &networking.DestinationRule{
    			Host: "reviews",
    			Subsets: []*networking.Subset{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_builder.go

    	}
    	// Apply traffic policy for the subset cluster.
    	cb.applyTrafficPolicy(opts)
    
    	maybeApplyEdsConfig(subsetCluster.cluster)
    
    	cb.applyMetadataExchange(opts.mutable.cluster)
    
    	// Add the DestinationRule+subsets metadata. Metadata here is generated on a per-cluster
    	// basis in buildCluster, so we can just insert without a copy.
    	subsetCluster.cluster.Metadata = util.AddConfigInfoMetadata(subsetCluster.cluster.Metadata, destRule.Meta)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  3. pkg/registry/core/service/ipallocator/cidrallocator.go

    	c.muTree.Lock()
    	defer c.muTree.Unlock()
    
    	address := ipToAddr(ip)
    	prefix := netip.PrefixFrom(address, address.BitLen())
    	// Use the largest subnet to allocate addresses because
    	// all the other subnets will be contained.
    	_, allocator, ok := c.tree.ShortestPrefixMatch(prefix)
    	if !ok {
    		klog.V(2).Infof("Could not get allocator for IP %s", ip.String())
    		return nil, ErrMismatchedNetwork
    	}
    	return allocator, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  4. cmd/peer-rest-client.go

    }
    
    // SignalService - sends signal to peer nodes.
    func (client *peerRESTClient) SignalService(sig serviceSignal, subSys string, dryRun bool) error {
    	values := grid.NewMSS()
    	values.Set(peerRESTSignal, strconv.Itoa(int(sig)))
    	values.Set(peerRESTDryRun, strconv.FormatBool(dryRun))
    	values.Set(peerRESTSubSys, subSys)
    	_, err := signalServiceRPC.Call(context.Background(), client.gridConn(), values)
    	return err
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/sftp/SFTPServer.groovy

    import org.apache.sshd.common.util.buffer.ByteArrayBuffer
    import org.apache.sshd.server.SshServer
    import org.apache.sshd.server.auth.password.PasswordAuthenticator
    import org.apache.sshd.server.auth.pubkey.PublickeyAuthenticator
    import org.apache.sshd.server.command.Command
    import org.apache.sshd.scp.server.ScpCommandFactory
    import org.apache.sshd.server.session.ServerSession
    import org.apache.sshd.sftp.server.SftpSubsystem
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  6. tests/integration/security/egress_gateway_origination_test.go

    ---
    apiVersion: networking.istio.io/v1beta1
    kind: DestinationRule
    metadata:
      name: egressgateway-for-server-sds
    spec:
      host: {{.EgressService}}.{{.EgressNamespace}}.svc.cluster.local
      subsets:
      - name: server
        trafficPolicy:
          portLevelSettings:
          - port:
              number: 443
            tls:
              mode: ISTIO_MUTUAL
              sni: {{ .to.Config.ClusterLocalFQDN }}
    `
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  7. tests/integration/pilot/istioctl_test.go

    	// details.
    	describeSvcAOutput = regexp.MustCompile(`(?s)Service: a\..*
       Port: http 80/HTTP targets pod port 18080
    .*
    80:
       DestinationRule: a\..* for "a"
          Matching subsets: v1
          No Traffic Policy
    `)
    
    	describePodAOutput = describeSvcAOutput
    )
    
    // This test requires `--istio.test.env=kube` because it tests istioctl doing PodExec
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/deployment/builder.go

    func (b *builder) validateTemplates(config echo.Config, c cluster.Cluster) bool {
    	expected := sets.New[string]()
    	for _, subset := range config.Subsets {
    		expected.InsertAll(parseList(subset.Annotations[annotation.InjectTemplates.Name])...)
    	}
    	if b.templates == nil || b.templates[c.Name()] == nil {
    		return expected.IsEmpty()
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex.go

    	for _, s := range a.services.List() {
    		res = append(res, serviceToAddressInfo(s.Service))
    	}
    	return res
    }
    
    // AddressInformation returns all AddressInfo's in the cluster.
    // This may be scoped to specific subsets by specifying a non-empty addresses field
    func (a *index) AddressInformation(addresses sets.String) ([]model.AddressInfo, sets.String) {
    	if len(addresses) == 0 {
    		// Full update
    		return a.All(), nil
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 19 17:19:41 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. cmd/peer-rest-server.go

    		if err != nil {
    			return np, grid.NewRemoteErr(err)
    		}
    		subSys := vars.Get(peerRESTSubSys)
    		// Apply dynamic values.
    		ctx, cancel := context.WithTimeout(context.Background(), 30*time.Second)
    		defer cancel()
    		if subSys == "" {
    			err = applyDynamicConfig(ctx, objAPI, srvCfg)
    		} else {
    			err = applyDynamicConfigForSubSys(ctx, objAPI, srvCfg, subSys)
    		}
    		if err != nil {
    			return np, grid.NewRemoteErr(err)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
Back to top