Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 157 for patchSets (0.58 sec)

  1. 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))...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.22.md

     - The flag `--experimental-patches` is now deprecated and will be removed in a future release. You can migrate to using the new flag `--patches`. Add a new field `{Init|Join}Configuration.patches.directory` that can be used for the same purpose. For `init` and `join` it is now recommended that you migrate to configure patches via `{Init|Join}Configuration.patches.directory`. For the time being, these flags can be mixed with `--config`, but that...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/controlplane/manifests_test.go

    	if err != nil {
    		t.Fatalf("WriteFile returned unexpected error: %v", err)
    	}
    
    	// Execute createStaticPodFunction with patches
    	manifestPath := filepath.Join(tmpdir, kubeadmconstants.ManifestsSubDirName)
    	err = CreateStaticPodFiles(manifestPath, patchesPath, cfg, &kubeadmapi.APIEndpoint{}, false /* isDryRun */, kubeadmconstants.KubeAPIServer)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  4. pkg/controller/daemon/update.go

    // PodSpecTemplate. We can modify this later to encompass more state (or less) and remain compatible with previously
    // recorded patches.
    func getPatch(ds *apps.DaemonSet) ([]byte, error) {
    	dsBytes, err := json.Marshal(ds)
    	if err != nil {
    		return nil, err
    	}
    	var raw map[string]interface{}
    	err = json.Unmarshal(dsBytes, &raw)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 16:53:53 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster.go

    }
    
    func (p clusterPatcher) insertedClusters() []*cluster.Cluster {
    	return envoyfilter.InsertedClusters(p.pctx, p.efw)
    }
    
    func (p clusterPatcher) hasPatches() bool {
    	return p.efw != nil && len(p.efw.Patches[networking.EnvoyFilter_CLUSTER]) > 0
    }
    
    // SniDnat clusters do not have any TLS setting, as they simply forward traffic to upstream
    // All SniDnat clusters are internal services in the mesh.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_node_status.go

    	}
    
    	kl.setNodeStatus(ctx, node)
    
    	changed := podCIDRChanged || nodeStatusHasChanged(&originalNode.Status, &node.Status) || areRequiredLabelsNotPresent
    	return node, changed
    }
    
    // patchNodeStatus patches node on the API server based on originalNode.
    // It returns any potential error, or an updatedNode and refreshes the state of kubelet when successful.
    func (kl *Kubelet) patchNodeStatus(originalNode, node *v1.Node) (*v1.Node, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/httproute.go

    		ValidateClusters:               proto.BoolFalse,
    		MaxDirectResponseBodySizeBytes: istio_route.DefaultMaxDirectResponseBodySizeBytes,
    		IgnorePortInHostMatching:       true,
    	}
    
    	// apply envoy filter patches
    	out = envoyfilter.ApplyRouteConfigurationPatches(networking.EnvoyFilter_SIDECAR_OUTBOUND, node, efw, out)
    
    	resource = &discovery.Resource{
    		Name:     out.Name,
    		Resource: protoconv.MessageToAny(out),
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.7K bytes
    - Viewed (1)
  8. pilot/pkg/xds/debug.go

    	return func(w http.ResponseWriter, req *http.Request) {
    		// TODO: we should split the inject template into smaller modules (separate one for dump core, etc),
    		// and allow pods to select which patches will be selected. When this happen, this should return
    		// all inject templates or take a param to select one.
    		if webhook == nil {
    			w.WriteHeader(http.StatusNotFound)
    			return
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  9. pkg/registry/core/service/storage/alloc.go

    					// go through conversion logic but goes through validation *sigh*.
    					// so we set ClusterIP here as well
    					// because the testing code expects valid (as they are output-ed from conversion)
    					// as it patches fields
    					if i == 0 {
    						service.Spec.ClusterIP = ip
    					}
    				}
    			}
    		}
    	}
    
    	return allocated, err
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:05 UTC 2023
    - 37.3K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/envoyfilter/listener_patch_test.go

             "xffNumTrustedHops": "4"
     }
    }`),
    			},
    		},
    		// Ensure we can mix v3 patches with v2 internal
    		// Note that alwaysSetRequestIdInResponse is only present in v3 protos. It will be silently ignored
    		// as we are working in v2 protos internally
    		{
    			ApplyTo: networking.EnvoyFilter_NETWORK_FILTER,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 70.1K bytes
    - Viewed (0)
Back to top