Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 117 for content_es (0.51 sec)

  1. pkg/kubeapiserver/options/authentication.go

    )
    
    func init() {
    	install.Install(cfgScheme)
    }
    
    // loadAuthenticationConfig parses the authentication configuration from the given file and returns it and the file's contents.
    func loadAuthenticationConfig(configFilePath string) (*apiserver.AuthenticationConfiguration, string, error) {
    	data, err := os.ReadFile(configFilePath)
    	if err != nil {
    		return nil, "", err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 22:40:22 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/storage/v1/types.go

    	// volume. This field defaults to false.
    	//
    	// Note: After a successful initial NodePublishVolume call, subsequent calls
    	// to NodePublishVolume should only update the contents of the volume. New
    	// mount points will not be seen by a running container.
    	//
    	// +optional
    	RequiresRepublish *bool `json:"requiresRepublish,omitempty" protobuf:"varint,7,opt,name=requiresRepublish"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  3. pkg/volume/plugins.go

    	// const.
    	CanSupport(spec *Spec) bool
    
    	// RequiresRemount returns true if this plugin requires mount calls to be
    	// reexecuted. Atomically updating volumes, like Downward API, depend on
    	// this to update the contents of the volume.
    	RequiresRemount(spec *Spec) bool
    
    	// NewMounter creates a new volume.Mounter from an API specification.
    	// Ownership of the spec pointer in *not* transferred.
    	// - spec: The v1.Volume spec
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  4. pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"string"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  5. pkg/credentialprovider/config.go

    		contents, err := os.ReadFile(absDockerConfigFileLocation)
    		if os.IsNotExist(err) {
    			continue
    		}
    		if err != nil {
    			klog.V(4).Infof("while trying to read %s: %v", absDockerConfigFileLocation, err)
    			continue
    		}
    		cfg, err := ReadDockerConfigFileFromBytes(contents)
    		if err != nil {
    			klog.V(4).Infof("couldn't get the config from %q contents: %v", absDockerConfigFileLocation, err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 19 15:11:57 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  6. api/openapi-spec/swagger.json

    ...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.21.md

    ### Immutable Secrets and ConfigMaps
    
    Immutable Secrets and ConfigMaps graduates to GA. This feature allows users to specify that the contents of a particular Secret or ConfigMap is immutable for its object lifetime. For such instances, Kubelet will not watch/poll for changes and therefore reducing apiserver load.
    
    ### Structured Logging in Kubelet
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.8.md

    * Adds --append-hash flag to kubectl create configmap/secret, which will append a short hash of the configmap/secret contents to the name during creation. ([#49961](https://github.com/kubernetes/kubernetes/pull/49961), [@mtaufen](https://github.com/mtaufen))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.9.md

    *   `kubectl cp` now honors destination names for directories. A complete directory is now copied; in previous versions only the file contents were copied. ([#51215](https://github.com/kubernetes/kubernetes/pull/51215),[ @juanvallejo](https://github.com/juanvallejo))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 16 10:46:27 UTC 2021
    - 313.7K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/phases/reset/removeetcdmember.go

    						klog.Warningf("[reset] Failed to delete contents of the etcd directory: %q, error: %v", etcdDataDir, err)
    					} else {
    						fmt.Printf("[reset] Deleted contents of the etcd data directory: %v\n", etcdDataDir)
    					}
    				}
    			} else {
    				fmt.Println("[reset] Would remove the etcd member on this node from the etcd cluster")
    				fmt.Printf("[reset] Would delete contents of the etcd data directory: %v\n", etcdDataDir)
    			}
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 11 08:02:50 UTC 2022
    - 4.5K bytes
    - Viewed (0)
Back to top