Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for configmapName (0.39 sec)

  1. tests/integration/security/util/cert/cert.go

    		configMapName := "istio-ca-root-cert"
    		err = cluster.Kube().CoreV1().ConfigMaps(systemNs.Name()).Delete(context.TODO(), configMapName,
    			metav1.DeleteOptions{})
    		if err == nil {
    			log.Infof("configmap %v is deleted", configMapName)
    		} else {
    			log.Infof("configmap %v may not exist and the deletion returns err (%v)",
    				configMapName, err)
    		}
    	}
    
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 16:44:37 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/componentconfigs/kubelet.go

    	configMapName := constants.KubeletBaseConfigurationConfigMap
    	klog.V(1).Infof("attempting to download the KubeletConfiguration from ConfigMap %q", configMapName)
    	cm, err := h.fromConfigMap(clientset, configMapName, constants.KubeletBaseConfigurationConfigMapKey, true)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. pilot/pkg/bootstrap/sidecarinjector.go

    		watcher, err = inject.NewFileWatcher(configFile, valuesFile)
    		if err != nil {
    			return nil, err
    		}
    	} else if s.kubeClient != nil {
    		configMapName := getInjectorConfigMapName(args.Revision)
    		cms := s.kubeClient.Kube().CoreV1().ConfigMaps(args.Namespace)
    		if _, err := cms.Get(context.TODO(), configMapName, metav1.GetOptions{}); err != nil {
    			if errors.IsNotFound(err) {
    				log.Infof("Skipping sidecar injector, template not found")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 20:39:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. 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)
  5. istioctl/pkg/precheck/precheck.go

    		configMapName := "istio"
    		if rev := deployment.Labels[label.IoIstioRev.Name]; rev != "default" {
    			configMapName += fmt.Sprintf("-%s", rev)
    		}
    		configMap, err := cli.Kube().CoreV1().ConfigMaps(namespace).Get(context.TODO(), configMapName, metav1.GetOptions{})
    		if err != nil {
    			fmt.Printf("Error getting configmap %s: %v\n", configMapName, err)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 02:57:30 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. manifests/charts/gateways/istio-ingress/templates/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
    - 12.1K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/apiclient/idempotency.go

    	var lastError error
    	err := wait.PollUntilContextTimeout(context.Background(),
    		apiCallRetryInterval, kubeadmapi.GetActiveTimeouts().KubernetesAPICall.Duration,
    		true, func(_ context.Context) (bool, error) {
    			ctx := context.Background()
    			if _, err := client.CoreV1().ConfigMaps(cm.ObjectMeta.Namespace).Get(ctx, configMapName, metav1.GetOptions{}); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 18 11:14:32 UTC 2024
    - 18.4K bytes
    - Viewed (0)
Back to top