Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 282 for downgraded (0.12 sec)

  1. pkg/registry/core/service/storage/alloc.go

    	if service.Spec.Type == api.ServiceTypeExternalName {
    		return nil
    	}
    
    	// We don't want to auto-upgrade (add an IP) or downgrade (remove an IP)
    	// PreferDualStack services following a cluster change to/from
    	// dual-stackness.
    	//
    	// That means a PreferDualStack service will only be upgraded/downgraded
    	// when:
    	// - changing ipFamilyPolicy to "RequireDualStack" or "SingleStack" AND
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:05 UTC 2023
    - 37.3K bytes
    - Viewed (0)
  2. pkg/proxy/serviceport.go

    	}
    
    	// filter external ips, source ranges and ingress ips
    	// prior to dual stack services, this was considered an error, but with dual stack
    	// services, this is actually expected. Hence we downgraded from reporting by events
    	// to just log lines with high verbosity
    	ipFamilyMap := proxyutil.MapIPsByIPFamily(service.Spec.ExternalIPs)
    	info.externalIPs = ipFamilyMap[ipFamily]
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 09 08:17:56 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/edit.go

    				// If this conflict was just one step in a longer chain of downgrades,
    				// then we would want to keep going past it until we find a version
    				// that doesn't have that problem. However, we only want to downgrade
    				// away from an *existing* requirement if we can confirm that it actually
    				// conflicts with mustSelect. (For example, we don't want
    				// 'go get -u ./...' to incidentally downgrade some dependency whose
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 21:46:32 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  4. operator/cmd/mesh/install.go

    				revisionWarning = ""
    			}
    			if icpTag < tag {
    				p.Printf("%s Istio is being upgraded from %s to %s.\n"+revisionWarning+check,
    					warnMarker, icpTag, tag)
    			} else {
    				p.Printf("%s Istio is being downgraded from %s to %s.\n"+revisionWarning+check,
    					warnMarker, icpTag, tag)
    			}
    		}
    	}
    	return nil
    }
    
    // GetTagVersion returns istio tag version
    func GetTagVersion(tagInfo string) (string, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modget/get.go

    				v := module.Version{Path: q.pattern}
    				// The user has explicitly requested to downgrade their own module to
    				// version "none". This is not an entirely unreasonable request: it
    				// could plausibly mean “downgrade away everything that depends on any
    				// explicit version of the main module”, or “downgrade away the
    				// package with the same path as the main module, found in a module
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  6. cluster/gce/upgrade.sh

      else
         # In case of a downgrade, a custom CoreDNS Corefile will be overwritten by a default Corefile. In that case,
         # the user will need to manually modify the resulting (default) Corefile after the downgrade is complete.
         echo "== Applying the latest default CoreDNS configuration =="
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/upgrade/compute_test.go

    					},
    					After: ClusterState{
    						KubeVersion:    v1Y5.String(),
    						KubeadmVersion: v1Y5.String(), // Note: The kubeadm version mustn't be "downgraded" here
    						DNSVersion:     constants.CoreDNSVersion,
    						EtcdVersion:    getEtcdVersion(v1Y5),
    					},
    				},
    				{
    					Description: "stable version",
    					Before: ClusterState{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 08:39:51 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/buildlist.go

    	// This may remove or downgrade modules in altMods.
    	reqs := &mvsReqs{roots: keep}
    	min, err := mvs.Req(mainModule, rootPaths, reqs)
    	if err != nil {
    		return nil, err
    	}
    	buildList, err := mvs.BuildList([]module.Version{mainModule}, reqs)
    	if err != nil {
    		return nil, err
    	}
    
    	// Check if modules in altMods were downgraded but not removed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  9. internal/config/config.go

    				if !ok {
    					ckvs.Set(kv.Key, kv.Value)
    				}
    			}
    			if _, ok := cp[subSys]; !ok {
    				rnSubSys, ok := renamedSubsys[subSys]
    				if !ok {
    					// A config subsystem was removed or server was downgraded.
    					continue
    				}
    				// Copy over settings from previous sub-system
    				// to newly renamed sub-system
    				for _, kv := range cp[rnSubSys][Default] {
    					_, ok := c[subSys][tgt].Lookup(kv.Key)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  10. pkg/apis/core/validation/validation.go

    				allErrs = append(allErrs, field.Invalid(field.NewPath("spec", "clusterIPs").Index(i), service.Spec.ClusterIPs, "may not change once set"))
    			}
    		}
    
    	// something has been released (downgraded)
    	case len(oldService.Spec.ClusterIPs) > len(service.Spec.ClusterIPs):
    		// primary ClusterIP has been released
    		if len(service.Spec.ClusterIPs) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
Back to top