Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for Federation (0.76 sec)

  1. cmd/bucket-handlers.go

    				continue
    			}
    
    			// No IPs seem to intersect, this means that bucket exists but has
    			// different IP addresses perhaps from a different deployment.
    			// bucket names are globally unique in federation at a given
    			// path prefix, name collision is not allowed. We simply log
    			// an error and continue.
    			bucketsInConflict.Add(bucket.Name)
    		}
    	}
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 16:27:27 GMT 2024
    - 61.6K bytes
    - Viewed (0)
  2. cmd/config-current.go

    						globalDomainNames, err))
    				}
    			}
    		}
    	}
    
    	// Bucket federation is 'true' only when IAM assets are not namespaced
    	// per tenant and all tenants interested in globally available users
    	// if namespace was requested such as specifying etcdPathPrefix then
    	// we assume that users are interested in global bucket support
    	// but not federation.
    	globalBucketFederation = etcdCfg.PathPrefix == "" && etcdCfg.Enabled
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Apr 23 11:33:28 GMT 2024
    - 30.7K bytes
    - Viewed (0)
  3. cmd/admin-handlers-users.go

    			defer done()
    
    			return loadDataUsageFromBackend(ctx, objectAPI)
    		},
    	)
    
    	dataUsageInfo, _ := bucketStorageCache.Get()
    
    	// If etcd, dns federation configured list buckets from etcd.
    	var err error
    	var buckets []BucketInfo
    	if globalDNSConfig != nil && globalBucketFederation {
    		dnsBuckets, err := globalDNSConfig.List()
    		if err != nil && !IsErrIgnored(err,
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 15:50:16 GMT 2024
    - 77.3K bytes
    - Viewed (0)
  4. cmd/globals.go

    	// Cluster replication manager.
    	globalSiteReplicationSys SiteReplicationSys
    
    	// Cluster replication resync metrics
    	globalSiteResyncMetrics *siteResyncMetrics
    
    	// Is set to true when Bucket federation is requested
    	// and is 'true' when etcdConfig.PathPrefix is empty
    	globalBucketFederation bool
    
    	// Allocated DNS config wrapper over etcd client.
    	globalDNSConfig dns.Store
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Wed Apr 24 04:08:47 GMT 2024
    - 16.5K bytes
    - Viewed (0)
  5. operator/cmd/mesh/install.go

    		}
    	}
    
    	return nil
    }
    
    // InstallManifests generates manifests from the given istiooperator instance and applies them to the
    // cluster. See GenManifests for more description of the manifest generation process.
    //
    //	force   validation warnings are written to logger but command is not aborted
    //	DryRun  all operations are done but nothing is written
    //
    // Returns final IstioOperator after installation if successful.
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 01:18:49 GMT 2024
    - 15.2K bytes
    - Viewed (0)
  6. istioctl/pkg/wait/wait.go

    		"The duration to wait before failing")
    	cmd.PersistentFlags().Float32Var(&threshold, "threshold", 1,
    		"The ratio of distribution required for success")
    	cmd.PersistentFlags().StringVar(&generation, "generation", "",
    		"Wait for a specific generation of config to become current, rather than using whatever is latest in "+
    			"Kubernetes")
    	cmd.PersistentFlags().BoolVarP(&verbose, "verbose", "v", false, "enables verbose output")
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Sat Feb 17 12:24:17 GMT 2024
    - 10.1K bytes
    - Viewed (0)
  7. internal/config/batch/batch.go

    		return cfg, err
    	}
    	if kduration < 0 {
    		return cfg, config.ErrInvalidBatchKeyRotationWorkersWait(nil)
    	}
    
    	eduration, err := time.ParseDuration(env.Get(EnvKeyExpirationWorkersWait, kvs.GetWithDefault(ExpirationWorkersWait, DefaultKVS)))
    	if err != nil {
    		return cfg, err
    	}
    	if eduration < 0 {
    		return cfg, config.ErrInvalidBatchExpirationWorkersWait(nil)
    	}
    
    	if rduration > 0 {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Wed Dec 06 09:09:22 GMT 2023
    - 4.7K bytes
    - Viewed (0)
  8. cmd/admin-handlers.go

    // host:port/drivepath, full url (http://host:port/drivepath)
    // The anonymizer map will have mappings for all these variants for efficiently replacing
    // any of these strings to the anonymized versions at the time of health report generation.
    func anonymizeHost(hostAnonymizer map[string]string, endpoint Endpoint, poolNum int, srvrNum int) {
    	if len(endpoint.Host) == 0 {
    		return
    	}
    
    	currentURL := endpoint.String()
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 21 11:43:18 GMT 2024
    - 97.3K bytes
    - Viewed (2)
  9. istioctl/pkg/tag/generate_test.go

    			}
    			if tc.userManaged {
    				opts.UserManaged = true
    			}
    			webhookYAML, err := generateValidatingWebhook(webhookConfig, opts)
    			if err != nil {
    				t.Fatalf("tag webhook YAML generation failed with error: %v", err)
    			}
    
    			vwhObject, _, err := deserializer.Decode([]byte(webhookYAML), nil, &admitv1.ValidatingWebhookConfiguration{})
    			if err != nil {
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Jan 16 17:43:49 GMT 2024
    - 12.1K bytes
    - Viewed (0)
  10. istioctl/pkg/writer/compare/sds/util.go

    	Destination(string) SecretItemBuilder
    	State(string) SecretItemBuilder
    	Build() (SecretItem, error)
    }
    
    // secretItemBuilder implements SecretItemBuilder, and acts as an intermediate before SecretItem generation
    type secretItemBuilder struct {
    	name   string
    	data   string
    	source string
    	dest   string
    	state  string
    	SecretMeta
    }
    
    // Name sets the name field on a secretItemBuilder
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Jun 06 15:14:48 GMT 2023
    - 6.6K bytes
    - Viewed (0)
Back to top