Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SignConfigMap (1.1 sec)

  1. pkg/controller/bootstrap/bootstrapsigner.go

    	key, quit := e.syncQueue.Get()
    	if quit {
    		return
    	}
    	defer e.syncQueue.Done(key)
    
    	e.signConfigMap(ctx)
    }
    
    // signConfigMap computes the signatures on our latest cached objects and writes
    // back if necessary.
    func (e *Signer) signConfigMap(ctx context.Context) {
    	origCM := e.getConfigMap()
    
    	if origCM == nil {
    		return
    	}
    
    	var needUpdate = false
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/componentconfigs/fakeconfig_test.go

    			Namespace: metav1.NamespaceSystem,
    		},
    		Data: map[string]string{
    			constants.ClusterConfigurationConfigMapKey: dedent.Dedent(yaml),
    		},
    	}
    
    	if signIt {
    		SignConfigMap(cm)
    	}
    
    	return cm
    }
    
    // oldClusterConfigVersion is used as an old unsupported version in tests throughout this file
    const oldClusterConfigVersion = "v1alpha1"
    
    var (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:36:00 UTC 2024
    - 16.3K bytes
    - Viewed (0)
Back to top