Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 799 for configMaps (0.16 sec)

  1. pkg/controller/certificates/rootcacertpublisher/publisher.go

    	_, err = c.client.CoreV1().ConfigMaps(ns).Update(ctx, cm, metav1.UpdateOptions{})
    	return err
    }
    
    func convertToCM(obj interface{}) (*v1.ConfigMap, error) {
    	cm, ok := obj.(*v1.ConfigMap)
    	if !ok {
    		tombstone, ok := obj.(cache.DeletedFinalStateUnknown)
    		if !ok {
    			return nil, fmt.Errorf("couldn't get object from tombstone %#v", obj)
    		}
    		cm, ok = tombstone.Obj.(*v1.ConfigMap)
    		if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. releasenotes/notes/46584.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    issue:
    - 46563
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 18 17:57:04 UTC 2023
    - 174 bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/uploadconfig/uploadconfig.go

    	fmt.Printf("[upload-config] Storing the configuration used in ConfigMap %q in the %q Namespace\n", kubeadmconstants.KubeadmConfigConfigMap, metav1.NamespaceSystem)
    
    	// Prepare the ClusterConfiguration for upload
    	// The components store their config in their own ConfigMaps, then reset the .ComponentConfig struct;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 04 07:20:43 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  4. cluster/addons/calico-policy-controller/typha-horizontal-autoscaler-role.yaml

    apiVersion: rbac.authorization.k8s.io/v1
    kind: Role
    metadata:
      name: typha-cpha
      namespace: kube-system
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
    rules:
      - apiGroups: [""]
        resources: ["configmaps"]
        verbs: ["get"]
      - apiGroups: ["apps"]
        resources: ["deployments/scale"]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 13 17:23:39 UTC 2019
    - 329 bytes
    - Viewed (0)
  5. manifests/charts/istio-control/istio-discovery/templates/role.yaml

      verbs: ["create", "get", "watch", "list", "update", "delete"]
    
    # For status controller, so it can delete the distribution report configmap
    - apiGroups: [""]
      resources: ["configmaps"]
      verbs: ["delete"]
    
    # For gateway deployment controller
    - apiGroups: ["coordination.k8s.io"]
      resources: ["leases"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 04 16:21:31 UTC 2023
    - 971 bytes
    - Viewed (0)
  6. manifests/charts/istiod-remote/templates/role.yaml

      verbs: ["create", "get", "watch", "list", "update", "delete"]
    
    # For status controller, so it can delete the distribution report configmap
    - apiGroups: [""]
      resources: ["configmaps"]
      verbs: ["delete"]
    
    # For gateway deployment controller
    - apiGroups: ["coordination.k8s.io"]
      resources: ["leases"]
      verbs: ["get", "update", "patch", "create"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 04 16:21:31 UTC 2023
    - 1021 bytes
    - Viewed (0)
  7. pkg/kube/inject/watcher.go

    	cms := w.client.Kube().CoreV1().ConfigMaps(w.namespace)
    	cm, err := cms.Get(context.TODO(), w.name, metav1.GetOptions{})
    	if err != nil {
    		return nil, "", err
    	}
    	return readConfigMap(cm, w.configKey, w.valuesKey)
    }
    
    func (w *configMapWatcher) SetHandler(handler func(*Config, string) error) {
    	w.handler = handler
    }
    
    func readConfigMap(cm *v1.ConfigMap, configKey, valuesKey string) (*Config, string, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  8. pkg/controlplane/controller/clusterauthenticationtrust/cluster_authentication_trust_controller.go

    	_, err := configMapClient.ConfigMaps(required.Namespace).Update(context.TODO(), required, metav1.UpdateOptions{})
    	if apierrors.IsNotFound(err) {
    		_, err := configMapClient.ConfigMaps(required.Namespace).Create(context.TODO(), required, metav1.CreateOptions{})
    		return err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/bootstraptoken/clusterinfo/clusterinfo_test.go

    		createErr error
    		expectErr bool
    	}{
    		{
    			"successful case should have no error",
    			true,
    			nil,
    			false,
    		},
    		{
    			"if configmap already exists, return error",
    			true,
    			apierrors.NewAlreadyExists(schema.GroupResource{Resource: "configmaps"}, "test"),
    			true,
    		},
    		{
    			"unexpected error should be returned",
    			true,
    			apierrors.NewUnauthorized("go away!"),
    			true,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 18 11:14:32 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. pkg/controller/bootstrap/doc.go

    limitations under the License.
    */
    
    // Package bootstrap provides automatic processes necessary for bootstraping.
    // This includes managing and expiring tokens along with signing well known
    // configmaps with those tokens.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 10 20:47:25 UTC 2017
    - 831 bytes
    - Viewed (0)
Back to top