Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,232 for Patches (0.33 sec)

  1. cmd/kubeadm/app/phases/addons/dns/dns.go

    }
    
    // applyCoreDNSDeploymentPatches reads patches from a directory and applies them over the input coreDNSDeploymentBytes
    func applyCoreDNSDeploymentPatches(coreDNSDeploymentBytes []byte, patchesDir string, output io.Writer) ([]byte, error) {
    	patchManager, err := patches.GetPatchManagerForPath(patchesDir, patches.KnownTargets(), output)
    	if err != nil {
    		return nil, err
    	}
    
    	patchTarget := &patches.PatchTarget{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/options/constant.go

    	CertificateRenewal = "certificate-renewal"
    
    	// EtcdUpgrade flag instructs kubeadm to execute etcd upgrade during upgrades
    	EtcdUpgrade = "etcd-upgrade"
    
    	// Patches flag sets the folder where kubeadm component patches are stored
    	Patches = "patches"
    
    	// PrintManifest flag instructs kubeadm to print the addon manifests to STDOUT instead of installing them.
    	PrintManifest = "print-manifest"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. releasenotes/notes/bds-removal.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 19:21:50 UTC 2024
    - 196 bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/options/generic.go

    		`supported by kubectl. The default "patchtype" is "strategic". "extension" must be either ` +
    		`"json" or "yaml". "suffix" is an optional string that can be used to determine ` +
    		`which patches are applied first alpha-numerically.`
    	fs.StringVar(patchesDir, Patches, *patchesDir, usage)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. pkg/webhooks/webhookpatch.go

    // WebhookCertPatcher listens for webhooks on specified revision and patches their CA bundles
    type WebhookCertPatcher struct {
    	// revision to patch webhooks for
    	revision    string
    	webhookName string
    
    	queue controllers.Queue
    
    	// File path to the x509 certificate bundle used by the webhook server
    	// and patched into the webhook config.
    	CABundleWatcher *keycertbundle.Watcher
    
    	webhooks kclient.Client[*v1.MutatingWebhookConfiguration]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 28 00:36:38 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/upgrade/node.go

    	initCfg.NodeRegistration.IgnorePreflightErrors = sets.List(ignorePreflightErrorsSet)
    
    	var patchesDir string
    	if upgradeCfg.Node.Patches != nil {
    		patchesDir = cmdutil.ValueFromFlagsOrConfig(cmd.Flags(), options.Patches, upgradeCfg.Node.Patches.Directory, nodeOptions.patchesDir).(string)
    	} else {
    		patchesDir = nodeOptions.patchesDir
    	}
    
    	return &nodeData{
    		cfg:                   upgradeCfg,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. tests/integration/security/external_ca/main_test.go

          overlays:
            # Amend ClusterRole to add permission for istiod to approve certificate signing by custom signer
            - kind: ClusterRole
              name: istiod-clusterrole-istio-system
              patches:
                - path: rules[-1]
                  value: |
                    apiGroups:
                    - certificates.k8s.io
                    resourceNames:
                    - clusterissuers.istio.io/*
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 22 14:18:21 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  8. tests/integration/security/file_mounted_certs/main_test.go

    components:
      egressGateways:
      - enabled: true
        name: istio-egressgateway
        k8s:
          overlays:
            - kind: Deployment
              name: istio-egressgateway
              patches:
                - path: spec.template.spec.volumes[100]
                  value: |-
                    name: server-certs
                    secret:
                      secretName: ` + PilotSecretName + `
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/manifest-generate/input/gateways.yaml

                # Port 5353 is forwarded to kube-dns
                - port: 5353
                  name: tcp-dns
              overlays:
                - kind: Deployment
                  name: ilb-gateway
                  patches:
                    - path: spec.template.spec.containers.[name:istio-proxy].env.[name:PILOT_CERT_PROVIDER].value
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/staticpod/utils.go

    	if err != nil {
    		return pod, errors.Wrapf(err, "failed to marshal Pod manifest to YAML")
    	}
    
    	patchManager, err := patches.GetPatchManagerForPath(patchesDir, patches.KnownTargets(), output)
    	if err != nil {
    		return pod, err
    	}
    
    	patchTarget := &patches.PatchTarget{
    		Name:                      pod.Name,
    		StrategicMergePatchObject: v1.Pod{},
    		Data:                      podYAML,
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top