Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 54 for deploymentID (0.18 sec)

  1. cmd/bucket-handlers.go

    		dnsLogIf(ctx, fmt.Errorf("Unable to add bucket DNS entry for bucket %s, an entry exists for the same bucket by a different tenant. This local bucket will be ignored. Bucket names are globally unique in federated deployments. Use path style requests on following addresses '%v' to access this bucket", bucket, globalDomainIPs.ToSlice()))
    	}
    
    	var wg sync.WaitGroup
    	// Remove buckets that are in DNS for this server, but aren't local
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/crdclient/types.gen.go

    				UID:               string(obj.UID),
    				Generation:        obj.Generation,
    			},
    			Spec: &obj.Spec,
    		}
    	},
    	gvk.Deployment: func(r runtime.Object) config.Config {
    		obj := r.(*k8sioapiappsv1.Deployment)
    		return config.Config{
    			Meta: config.Meta{
    				GroupVersionKind:  gvk.Deployment,
    				Name:              obj.Name,
    				Namespace:         obj.Namespace,
    				Labels:            obj.Labels,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 62.2K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.31.md

    - Kubeadm: enhance the "patches" functionality to be able to patch coredns deployment. The new patch target is called "corednsdeployment" (e.g. patch file "corednsdeployment+json.json"). This makes it possible to apply custom patches to coredns deployment during "init" and "upgrade". ([#124820](https://github.com/kubernetes/kubernetes/pull/124820), [@SataQiu](https://github.com/SataQiu)) [SIG Cluster Lifecycle]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  4. pkg/proxy/winkernel/proxier.go

    	hnsNetworkInfo, err := hns.getNetworkByName(hnsNetworkName)
    	for err != nil {
    		klog.ErrorS(err, "Unable to find HNS Network specified, please check network name and CNI deployment", "hnsNetworkName", hnsNetworkName)
    		time.Sleep(1 * time.Second)
    		hnsNetworkInfo, err = hns.getNetworkByName(hnsNetworkName)
    	}
    	return hnsNetworkInfo, err
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/conversion.go

    // So far, this mirrors how out of clusters work (address set means to use existing IP, unset means to provision one),
    // and there has been growing consensus on this model for in cluster deployments.
    //
    // Currently, the supported options are:
    // * 1 Hostname value. This can be short Service name ingress, or FQDN ingress.ns.svc.cluster.local, example.com. If its a non-k8s FQDN it is a ServiceEntry.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  6. cmd/admin-handlers-users.go

    				writeErrorResponseJSON(ctx, w, importErrorWithAPIErr(ctx, ErrAdminConfigBadJSON, err, allSvcAcctsFile, ""), r.URL)
    				return
    			}
    
    			// Validations for LDAP enabled deployments.
    			if globalIAMSys.LDAPConfig.Enabled() {
    				err := globalIAMSys.NormalizeLDAPAccessKeypairs(ctx, serviceAcctReqs)
    				if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    === Using the `Copy` task
    
    When working with application servers, you can use a `Copy` task to deploy the application archive (e.g. a WAR file).
    Since you are deploying a single file, the destination directory of the `Copy` is the whole deployment directory.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  8. pkg/workloadapi/workload.pb.go

    	WorkloadType_JOB        WorkloadType = 3
    )
    
    // Enum value maps for WorkloadType.
    var (
    	WorkloadType_name = map[int32]string{
    		0: "DEPLOYMENT",
    		1: "CRONJOB",
    		2: "POD",
    		3: "JOB",
    	}
    	WorkloadType_value = map[string]int32{
    		"DEPLOYMENT": 0,
    		"CRONJOB":    1,
    		"POD":        2,
    		"JOB":        3,
    	}
    )
    
    func (x WorkloadType) Enum() *WorkloadType {
    	p := new(WorkloadType)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  9. tests/integration/ambient/baseline_test.go

    			for _, p := range pods {
    				grace := p.Spec.TerminationGracePeriodSeconds
    				if grace != nil && *grace == want {
    					return true
    				}
    			}
    			return false
    		}
    		// check that waypoint deployment is unmodified
    		retry.UntilOrFail(t, func() bool {
    			return getGracePeriod(2)
    		})
    		// change the waypoint template
    		istio.GetOrFail(t, t).UpdateInjectionConfig(t, func(cfg *inject.Config) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  10. pilot/pkg/model/push_context.go

    	// If ALL instances have a sidecar, we enable TLS, otherwise we disable
    	// TODO(https://github.com/istio/istio/issues/27376) enable mixed deployments
    	// A service with passthrough resolution is always passthrough, regardless of the TrafficPolicy.
    	if service.Resolution == Passthrough || tp.GetLoadBalancer().GetSimple() == networking.LoadBalancerSettings_PASSTHROUGH {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
Back to top