Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for configmapName (0.33 sec)

  1. cmd/kubeadm/app/phases/kubelet/config.go

    func CreateConfigMap(cfg *kubeadmapi.ClusterConfiguration, client clientset.Interface) error {
    	configMapName := kubeadmconstants.KubeletBaseConfigurationConfigMap
    	fmt.Printf("[kubelet] Creating a ConfigMap %q in namespace %s with the configuration for the kubelets in the cluster\n", configMapName, metav1.NamespaceSystem)
    
    	kubeletCfg, ok := cfg.ComponentConfigs[componentconfigs.KubeletGroup]
    	if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 02 12:34:30 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/mesh.go

    		return
    	}
    
    	// Watch the istio ConfigMap for mesh config changes.
    	// This may be necessary for external Istiod.
    	configMapName := getMeshConfigMapName(args.Revision)
    	multiWatcher := kubemesh.NewConfigMapWatcher(
    		s.kubeClient, args.Namespace, configMapName, configMapKey, multiWatch, s.internalStop)
    	s.environment.Watcher = multiWatcher
    	s.environment.NetworksWatcher = multiWatcher
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  3. tests/integration/security/ca_custom_root/secure_naming_test.go

    	}
    	t.Log("the CA certificate is as expected")
    }
    
    func checkCACert(t framework.TestContext, testNamespace namespace.Instance) error {
    	configMapName := "istio-ca-root-cert"
    	cm, err := t.Clusters().Default().Kube().CoreV1().ConfigMaps(testNamespace.Name()).Get(context.TODO(), configMapName,
    		metav1.GetOptions{})
    	if err != nil {
    		return err
    	}
    	var certData string
    	var pluginCert []byte
    	var ok bool
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. manifests/charts/gateways/istio-egress/templates/injected-deployment.yaml

              secretName: {{ .secretName | quote }}
              optional: true
          {{- end }}
          {{- range $gateway.configVolumes }}
          - name: {{ .name }}
            configMap:
              name: {{ .configMapName | quote }}
              optional: true
          {{- end }}
          affinity:
    {{ include "nodeaffinity" (dict "global" .Values.global "nodeSelector" $gateway.nodeSelector) | trim | indent 8 }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. manifests/charts/gateways/istio-ingress/templates/injected-deployment.yaml

              secretName: {{ .secretName | quote }}
              optional: true
          {{- end }}
          {{- range $gateway.configVolumes }}
          - name: {{ .name }}
            configMap:
              name: {{ .configMapName | quote }}
              optional: true
          {{- end }}
          affinity:
    {{ include "nodeaffinity" (dict "global" .Values.global "nodeSelector" $gateway.nodeSelector) | trim | indent 8 }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/authentication/request/headerrequest/requestheader_controller_test.go

    			defAllowedClientNamesKey:  encode(allowedClientNamesVal),
    		},
    	}
    }
    
    func newDefaultTarget() *RequestHeaderAuthRequestController {
    	return &RequestHeaderAuthRequestController{
    		configmapName:          defConfigMapName,
    		configmapNamespace:     defConfigMapNamespace,
    		usernameHeadersKey:     defUsernameHeadersKey,
    		groupHeadersKey:        defGroupHeadersKey,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 07 14:37:01 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  7. pkg/kube/krt/singleton_test.go

    	ConfigMapNames.Register(TrackerHandler[string](tt))
    	tt.WaitOrdered("add/")
    
    	assert.Equal(t, *ConfigMapNames.Get(), "")
    
    	cmt.Create(&corev1.ConfigMap{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "a",
    			Namespace: "ns",
    		},
    	})
    	tt.WaitUnordered("delete/", "add/ns/a")
    	assert.Equal(t, *ConfigMapNames.Get(), "ns/a")
    }
    
    func TestNewStatic(t *testing.T) {
    	tt := assert.NewTracker[string](t)
    	s := krt.NewStatic[string](nil)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 08:27:29 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top