Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for InitConfig (0.12 sec)

  1. cmd/kubeadm/app/cmd/phases/upgrade/node/preflight.go

    		// Update the InitConfiguration used for RunPullImagesCheck with ImagePullPolicy and ImagePullSerial
    		// that come from UpgradeNodeConfiguration.
    		initConfig := data.InitCfg()
    		initConfig.NodeRegistration.ImagePullPolicy = data.Cfg().Node.ImagePullPolicy
    		initConfig.NodeRegistration.ImagePullSerial = data.Cfg().Node.ImagePullSerial
    
    		if !data.DryRun() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. cmd/config.go

    	if objAPI == nil {
    		return errInvalidArgument
    	}
    
    	return initConfig(objAPI)
    }
    
    // NewConfigSys - creates new config system object.
    func NewConfigSys() *ConfigSys {
    	return &ConfigSys{}
    }
    
    // Initialize and load config from remote etcd or local config directory
    func initConfig(objAPI ObjectLayer) (err error) {
    	bootstrapTraceMsg("load the configuration")
    	defer func() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Aug 23 10:07:06 UTC 2023
    - 6K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/tasks/Copy.java

     * //for Ant filter
     * import org.apache.tools.ant.filters.ReplaceTokens
     *
     * //for including in the copy task
     * def dataContent = copySpec {
     *     from 'src/data'
     *     include '*.data'
     * }
     *
     * task initConfig(type: Copy) {
     *     from('src/main/config') {
     *         include '**/*.properties'
     *         include '**/*.xml'
     *         filter(ReplaceTokens, tokens: [version: '2.3.1'])
     *     }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 3.4K bytes
    - Viewed (0)
Back to top