Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 797 for configmap3 (4 sec)

  1. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/namespace-roles.yaml

        name: system:controller:bootstrap-signer
        namespace: kube-public
      rules:
      - apiGroups:
        - ""
        resources:
        - configmaps
        verbs:
        - get
        - list
        - watch
      - apiGroups:
        - ""
        resourceNames:
        - cluster-info
        resources:
        - configmaps
        verbs:
        - update
      - apiGroups:
        - ""
        - events.k8s.io
        resources:
        - events
        verbs:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 16 01:37:43 UTC 2019
    - 3.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/core/v1/nodeconfigsource.go

    type NodeConfigSourceApplyConfiguration struct {
    	ConfigMap *ConfigMapNodeConfigSourceApplyConfiguration `json:"configMap,omitempty"`
    }
    
    // NodeConfigSourceApplyConfiguration constructs an declarative configuration of the NodeConfigSource type for use with
    // apply.
    func NodeConfigSource() *NodeConfigSourceApplyConfiguration {
    	return &NodeConfigSourceApplyConfiguration{}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  3. cluster/addons/cloud-controller-manager/cloud-node-controller-role.yaml

    - apiGroups:
      - ""
      resources:
      - namespaces
      - configmaps
      verbs:
      - get
    ---
    apiVersion: rbac.authorization.k8s.io/v1
    kind: Role
    metadata:
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
      name: system:cloud-controller-manager
      namespace: kube-system
    rules:
    - apiGroups:
      - ""
      resources:
      - configmaps
      verbs:
      - watch
    - apiGroups:
      - ""
      resources:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 08 14:40:04 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. pkg/config/mesh/kubemesh/watcher.go

    			// Keep the last known config in case there's a misconfiguration issue.
    			log.Errorf("failed to read mesh config from ConfigMap: %v", err)
    			return
    		}
    		w.HandleMeshConfig(meshConfig)
    	})
    
    	go c.Run(stop)
    
    	// Ensure the ConfigMap is initially loaded if present.
    	if !client.WaitForCacheSync("configmap watcher", stop, c.HasSynced) {
    		log.Error("failed to wait for cache sync")
    	}
    	return w
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 25 20:54:46 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/phases/init/uploadconfig.go

    		Upload the kubelet configuration extracted from the kubeadm InitConfiguration object
    		to a kubelet-config ConfigMap in the cluster
    		`)
    
    	uploadKubeletConfigExample = cmdutil.Examples(`
    		# Upload the kubelet configuration from the kubeadm Config file to a ConfigMap in the cluster.
    		kubeadm init phase upload-config kubelet --config kubeadm.yaml
    		`)
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 02 12:34:30 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Node.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/HEAD/core.v1.Node.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 23:06:39 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. pkg/config/schema/collections/collections.gen.go

    		Builtin:       true,
    		ValidateProto: validation.EmptyValidate,
    	}.MustBuild()
    
    	ConfigMap = resource.Builder{
    		Identifier:    "ConfigMap",
    		Group:         "",
    		Kind:          "ConfigMap",
    		Plural:        "configmaps",
    		Version:       "v1",
    		Proto:         "k8s.io.api.core.v1.ConfigMap",
    		ReflectType:   reflect.TypeOf(&k8sioapicorev1.ConfigMap{}).Elem(),
    		ProtoPackage:  "k8s.io/api/core/v1",
    		ClusterScoped: false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  9. pkg/volume/configmap/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package configmap contains the internal representation of configMap volumes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 16 17:48:21 UTC 2016
    - 720 bytes
    - Viewed (0)
  10. pkg/registry/core/configmap/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package configmap provides Registry interface
    // and its REST implementation for storing
    // ConfigMap API objects.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 21 14:11:50 UTC 2016
    - 765 bytes
    - Viewed (0)
Back to top