Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for configmaps (0.16 sec)

  1. pkg/kubelet/kubelet_pods.go

    		case envFrom.ConfigMapRef != nil:
    			cm := envFrom.ConfigMapRef
    			name := cm.Name
    			configMap, ok := configMaps[name]
    			if !ok {
    				if kl.kubeClient == nil {
    					return result, fmt.Errorf("couldn't get configMap %v/%v, no kubeClient defined", pod.Namespace, name)
    				}
    				optional := cm.Optional != nil && *cm.Optional
    				configMap, err = kl.configMapManager.GetConfigMap(pod.Namespace, name)
    				if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  2. cluster/gce/gci/configure-helper.sh

      - level: None
        # Ingress controller reads 'configmaps/ingress-uid' through the unsecured port.
        # TODO(#46983): Change this to the ingress controller service account.
        users: ["system:unsecured"]
        namespaces: ["kube-system"]
        verbs: ["get"]
        resources:
          - group: "" # core
            resources: ["configmaps"]
      - level: None
        users: ["kubelet"] # legacy kubelet identity
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  3. operator/cmd/mesh/testdata/manifest-generate/output/pilot_default.golden.yaml

              {{- if eq .Values.global.pilotCertProvider "istiod" }}
              - name: istiod-ca-cert
                configMap:
                  name: istio-ca-root-cert
              {{- end }}
              {{- if eq .Values.global.pilotCertProvider "kubernetes" }}
              - name: kube-ca-cert
                configMap:
                  name: kube-root-ca.crt
              {{- end }}
              {{- if .Values.global.mountMtlsCerts }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 102.6K bytes
    - Viewed (0)
  4. pkg/api/pod/util_test.go

    						Sources: []api.VolumeProjection{{
    							ConfigMap: &api.ConfigMapProjection{
    								LocalObjectReference: api.LocalObjectReference{
    									Name: "Spec.Volumes[*].VolumeSource.Projected.Sources[*].ConfigMap"}}}}}}}, {
    				VolumeSource: api.VolumeSource{
    					ConfigMap: &api.ConfigMapVolumeSource{
    						LocalObjectReference: api.LocalObjectReference{
    							Name: "Spec.Volumes[*].VolumeSource.ConfigMap"}}}}},
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

          "description": "EnvFromSource represents the source of a set of ConfigMaps",
          "properties": {
            "configMapRef": {
              "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMapEnvSource",
              "description": "The ConfigMap to select from"
            },
            "prefix": {
              "description": "An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.",
              "type": "string"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods_test.go

    			}
    
    			testKubelet.fakeKubeClient.AddReactor("get", "configmaps", func(action core.Action) (bool, runtime.Object, error) {
    				var err error
    				if tc.configMap == nil {
    					err = apierrors.NewNotFound(action.GetResource().GroupResource(), "configmap-name")
    				}
    				return true, tc.configMap, err
    			})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet.go

    			configMapManager = configmap.NewCachingConfigMapManager(
    				klet.kubeClient, manager.GetObjectTTLFromNodeFunc(klet.GetNode))
    		case kubeletconfiginternal.GetChangeDetectionStrategy:
    			secretManager = secret.NewSimpleSecretManager(klet.kubeClient)
    			configMapManager = configmap.NewSimpleConfigMapManager(klet.kubeClient)
    		default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  8. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    ["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"] manifests/charts/istio-control/istio-discovery/templates/configmap.yaml {{- define "mesh" }} # The trust domain corresponds to the trust root of a system. # Refer to https://gith...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  9. pkg/printers/internalversion/printers_test.go

    	return &b
    }
    
    func TestPrintConfigMap(t *testing.T) {
    	tests := []struct {
    		configMap api.ConfigMap
    		expected  []metav1.TableRow
    	}{
    		// Basic config map with no data.
    		{
    			configMap: api.ConfigMap{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:              "configmap1",
    					CreationTimestamp: metav1.Time{Time: time.Now().Add(1.9e9)},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  10. pkg/apis/core/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.5K bytes
    - Viewed (0)
Back to top