Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for configmaps (0.14 sec)

  1. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    func (in *ConfigMap) DeepCopy() *ConfigMap {
    	if in == nil {
    		return nil
    	}
    	out := new(ConfigMap)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    func (in *ConfigMap) DeepCopyObject() runtime.Object {
    	if c := in.DeepCopy(); c != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_test.go

    	// 			VolumeSource: v1.VolumeSource{
    	// 				ConfigMap: &v1.ConfigMapVolumeSource{
    	// 					LocalObjectReference: v1.LocalObjectReference{
    	// 						Name: "config-map"}}}}},
    	// 	},
    	// }
    	// testMainKubelet.configMapManager.RegisterPod(pod)
    	// testMainKubelet.secretManager.RegisterPod(pod)
    	assert.Nil(t, testMainKubelet.configMapManager, "configmap manager should be nil if kubelet is in standalone mode")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  3. samples/addons/grafana.yaml

                  path: /api/health
                  port: 3000
          volumes:
            - name: config
              configMap:
                name: grafana
            - name: dashboards-istio
              configMap:
                name: istio-grafana-dashboards
            - name: dashboards-istio-services
              configMap:
                name: istio-services-grafana-dashboards
            - name: storage
              emptyDir: {}
    
    ---
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  4. pkg/printers/internalversion/printers.go

    	configMapColumnDefinitions := []metav1.TableColumnDefinition{
    		{Name: "Name", Type: "string", Format: "name", Description: metav1.ObjectMeta{}.SwaggerDoc()["name"]},
    		{Name: "Data", Type: "string", Description: apiv1.ConfigMap{}.SwaggerDoc()["data"]},
    		{Name: "Age", Type: "string", Description: metav1.ObjectMeta{}.SwaggerDoc()["creationTimestamp"]},
    	}
    	_ = h.TableHandler(configMapColumnDefinitions, printConfigMap)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
Back to top