Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 62 for deploymentID (0.2 sec)

  1. testing/architecture-test/src/changes/archunit-store/injected-services-should-have-service-scope-applied.txt

    Class <org.gradle.configuration.project.ProjectEvaluator> is not annotated with @ServiceScope in (ProjectEvaluator.java:0)
    Class <org.gradle.deployment.internal.DeploymentRegistry> is not annotated with @ServiceScope in (DeploymentRegistry.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. cmd/signature-v4-utils.go

    		// with > 0 content-length in the body,
    		// we should skip such clients and allow
    		// blindly such insecure clients only if
    		// S3 strict compatibility is disabled.
    
    		// We return true only in situations when
    		// deployment has asked MinIO to allow for
    		// such broken clients and content-length > 0.
    		return r.ContentLength > 0 && !globalServerCtxt.StrictS3Compat
    	}
    	return false
    }
    
    // Returns SHA256 for calculating canonical-request.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/waypoints.go

    	return krt.NewCollection(Gateways, func(ctx krt.HandlerContext, gateway *v1beta1.Gateway) *Waypoint {
    		if len(gateway.Status.Addresses) == 0 {
    			// gateway.Status.Addresses should only be populated once the Waypoint's deployment has at least 1 ready pod, it should never be removed after going ready
    			// ignore Kubernetes Gateways which aren't waypoints
    			return nil
    		}
    
    		instances := krt.Fetch(ctx, Pods, krt.FilterLabel(map[string]string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. build/dependencies.yaml

        - path: cmd/kubeadm/app/constants/constants.go
          match: DefaultEtcdVersion =
        - path: hack/lib/etcd.sh
          match: ETCD_VERSION=
        - path: staging/src/k8s.io/sample-apiserver/artifacts/example/deployment.yaml
          match: gcr.io/etcd-development/etcd
        - path: test/utils/image/manifest.go
          match: configs\[Etcd\] = Config{list\.GcEtcdRegistry, "etcd", "\d+\.\d+.\d+(-(alpha|beta|rc).\d+)?(-\d+)?"}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. 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)
  6. pkg/workloadapi/workload.proto

    }
    
    enum WorkloadStatus {
      // Workload is healthy and ready to serve traffic.
      HEALTHY = 0;
      // Workload is unhealthy and NOT ready to serve traffic.
      UNHEALTHY = 1;
    }
    
    enum WorkloadType {
      DEPLOYMENT = 0;
      CRONJOB = 1;
      POD = 2;
      JOB = 3;
    }
    
    // PorList represents the ports for a service
    message PortList {
      repeated Port ports = 1;
    }
    
    message Port {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  7. api/openapi-spec/swagger.json

            },
            "paused": {
              "description": "Indicates that the deployment is paused.",
              "type": "boolean"
            },
            "progressDeadlineSeconds": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  8. 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)
  9. pilot/pkg/serviceregistry/kube/controller/ambient/workloads.go

    			})
    		}
    	}
    	return res
    }
    
    func workloadNameAndType(pod *v1.Pod) (string, workloadapi.WorkloadType) {
    	objMeta, typeMeta := kubeutil.GetDeployMetaFromPod(pod)
    	switch typeMeta.Kind {
    	case "Deployment":
    		return objMeta.Name, workloadapi.WorkloadType_DEPLOYMENT
    	case "Job":
    		return objMeta.Name, workloadapi.WorkloadType_JOB
    	case "CronJob":
    		return objMeta.Name, workloadapi.WorkloadType_CRONJOB
    	default:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  10. cluster/gce/gci/configure-helper.sh

      readonly UUID_MNT_PREFIX="/mnt/disks/by-uuid/google-local-ssds"
      readonly UUID_BLOCK_PREFIX="/dev/disk/by-uuid/google-local-ssds"
      readonly COREDNS_AUTOSCALER="Deployment/coredns"
      readonly KUBEDNS_AUTOSCALER="Deployment/kube-dns"
    
      # Resource requests of master components.
      CLOUD_CONTROLLER_MANAGER_CPU_REQUEST="${KUBE_CONTROLLER_MANAGER_CPU_REQUEST:-50m}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
Back to top