Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 805 for configmap (0.38 sec)

  1. pkg/volume/configmap/configmap.go

    			},
    		}
    	}
    
    	totalBytes := totalBytes(configMap)
    	klog.V(3).Infof("Received configMap %v/%v containing (%v) pieces of data, %v total bytes",
    		b.pod.Namespace,
    		b.source.Name,
    		len(configMap.Data)+len(configMap.BinaryData),
    		totalBytes)
    
    	payload, err := MakePayload(b.source.Items, configMap, b.source.DefaultMode, optional)
    	if err != nil {
    		return err
    	}
    
    	setupSuccess := false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. pkg/test/framework/components/istio/configmap.go

    	}
    	return cmName, nil
    }
    
    func (cm *configMap) getConfigMap(c cluster.Cluster, name string) (*corev1.ConfigMap, error) {
    	return c.Kube().CoreV1().ConfigMaps(cm.namespace).Get(context.TODO(), name, metav1.GetOptions{})
    }
    
    func (cm *configMap) updateConfigMap(c cluster.Cluster, cfgMap *corev1.ConfigMap) error {
    	_, err := c.Kube().CoreV1().ConfigMaps(cm.namespace).Update(context.TODO(), cfgMap, metav1.UpdateOptions{})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/client-go/applyconfigurations/core/v1/configmap.go

    	return extractConfigMap(configMap, fieldManager, "status")
    }
    
    func extractConfigMap(configMap *corev1.ConfigMap, fieldManager string, subresource string) (*ConfigMapApplyConfiguration, error) {
    	b := &ConfigMapApplyConfiguration{}
    	err := managedfields.ExtractInto(configMap, internal.Parser().Type("io.k8s.api.core.v1.ConfigMap"), fieldManager, b, subresource)
    	if err != nil {
    		return nil, err
    	}
    	b.WithName(configMap.Name)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 12.9K bytes
    - Viewed (0)
  4. hack/testdata/configmap.yaml

    apiVersion: v1
    data:
      key-1: value-1
      key-2: value-2
    kind: ConfigMap
    metadata:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 25 12:37:46 UTC 2017
    - 108 bytes
    - Viewed (0)
  5. helm/minio/templates/configmap.yaml

    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: {{ template "minio.fullname" . }}
      labels:
        app: {{ template "minio.name" . }}
        chart: {{ template "minio.chart" . }}
        release: {{ .Release.Name }}
        heritage: {{ .Release.Service }}
    data:
      initialize: |-
        {{- include (print $.Template.BasePath "/_helper_create_bucket.txt") . | nindent 4 }}
      add-user: |-
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 17 06:04:15 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. manifests/charts/istio-control/istio-discovery/templates/configmap.yaml

    {{- $originalMesh := include "mesh" . | fromYaml }}
    {{- $mesh := mergeOverwrite $originalMesh .Values.meshConfig }}
    
    {{- if .Values.pilot.configMap }}
    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: istio{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
      namespace: {{ .Release.Namespace }}
      labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. hack/testdata/kustomize/configmap.yaml

    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: the-map
    data:
      altGreeting: "Good Morning!"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 26 00:31:03 UTC 2019
    - 117 bytes
    - Viewed (0)
  8. operator/pkg/helmreconciler/testdata/configmap.yaml

    apiVersion: v1
    kind: ConfigMap
    metadata:
      creationTimestamp: null
      name: config
      namespace: istio-system
    data:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 22 16:53:35 UTC 2021
    - 127 bytes
    - Viewed (0)
  9. cmd/kubeadm/test/resources/configmap.go

    // FakeConfigMap represents a fake config map
    type FakeConfigMap struct {
    	Name string
    	Data map[string]string
    }
    
    // Create creates a fake configmap using the provided client
    func (c *FakeConfigMap) Create(client clientset.Interface) error {
    	return apiclient.CreateOrUpdateConfigMap(client, &v1.ConfigMap{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      c.Name,
    			Namespace: metav1.NamespaceSystem,
    		},
    		Data: c.Data,
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 17 14:40:46 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  10. hack/testdata/diff/configmap.yaml

    apiVersion: v1
    kind: ConfigMap
    metadata:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 11 17:19:52 UTC 2018
    - 54 bytes
    - Viewed (0)
Back to top