Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 160 for configmap (0.23 sec)

  1. operator/cmd/mesh/manifest-generate_test.go

    		// This can be seen from REGISTRY_ONLY not applying
    		{
    			desc:       "pilot_merge_meshconfig",
    			diffSelect: "ConfigMap:*:istio$",
    			fileSelect: []string{"templates/configmap.yaml", "templates/_helpers.tpl"},
    		},
    		{
    			desc:       "pilot_disable_tracing",
    			diffSelect: "ConfigMap:*:istio$",
    		},
    		{
    			desc:       "autoscaling_ingress_v2",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inject/list.yaml.injected

              projected:
                sources:
                - serviceAccountToken:
                    audience: istio-ca
                    expirationSeconds: 43200
                    path: istio-token
            - configMap:
                name: istio-ca-root-cert
              name: istiod-ca-cert
      status: {}
    - apiVersion: apps/v1
      kind: Deployment
      metadata:
        creationTimestamp: null
        name: hello-v2
      spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  3. pilot/pkg/leaderelection/leaderelection_test.go

    	})
    	// Expect to run once
    	expectInt(t, completions.Load, 1)
    
    	// drop RBAC permissions to update the configmap
    	// This simulates loosing an active lease
    	allowRbac.Store(false)
    
    	// We should start a new cycle at this point
    	expectInt(t, l.cycle.Load, 2)
    
    	// Add configmap permission back
    	allowRbac.Store(true)
    
    	// We should get the leader lock back
    	expectInt(t, completions.Load, 2)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. plugin/pkg/auth/authorizer/node/node_authorizer.go

    //  3. If a request is for a secret, configmap, persistent volume, resource claim, or persistent volume claim, reject unless the verb is get, and the requested object is related to the requesting node:
    //     node <- configmap
    //     node <- pod
    //     node <- pod <- secret
    //     node <- pod <- configmap
    //     node <- pod <- pvc
    //     node <- pod <- pvc <- pv
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 16K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/nodevolumelimits/csi_test.go

    					VolumeSource: v1.VolumeSource{
    						ConfigMap: &v1.ConfigMapVolumeSource{},
    					},
    				},
    				{
    					VolumeSource: v1.VolumeSource{
    						Secret: &v1.SecretVolumeSource{},
    					},
    				},
    			},
    		},
    	}
    	pvcPodWithConfigmapAndSecret := &v1.Pod{
    		Spec: v1.PodSpec{
    			Volumes: []v1.Volume{
    				{
    					VolumeSource: v1.VolumeSource{
    						ConfigMap: &v1.ConfigMapVolumeSource{},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 18:07:11 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/analyzers_test.go

    			"testdata/common/sidecar-injector-configmap.yaml",
    		},
    		analyzer: &injection.ImageAnalyzer{},
    		expected: []message{},
    	},
    	{
    		name: "istioInjectionProxyImageMismatchAbsolute",
    		inputFiles: []string{
    			"testdata/injection-with-mismatched-sidecar.yaml",
    			"testdata/sidecar-injector-configmap-absolute-override.yaml",
    		},
    		analyzer: &injection.ImageAnalyzer{},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/upgrade/common.go

    		if apierrors.IsNotFound(err) {
    			_, _ = printer.Printf("[upgrade/config] In order to upgrade, a ConfigMap called %q in the %q namespace must exist.\n", constants.KubeadmConfigConfigMap, metav1.NamespaceSystem)
    			_, _ = printer.Printf("[upgrade/config] Use 'kubeadm init phase upload-config --config your-config.yaml' to re-upload it.\n")
    			err = errors.Errorf("the ConfigMap %q in the %q namespace was not found", constants.KubeadmConfigConfigMap, metav1.NamespaceSystem)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/kube/deployment.go

    		cm := &corev1.ConfigMap{ObjectMeta: metav1.ObjectMeta{Name: cmName}, BinaryData: cmData}
    		_, err = cfg.Cluster.Kube().CoreV1().ConfigMaps(cfg.Namespace.Name()).Create(context.TODO(), cm, metav1.CreateOptions{})
    		if err != nil && !kerrors.IsAlreadyExists(err) {
    			return fmt.Errorf("failed creating configmap %s: %v", cm.Name, err)
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  9. manifests/charts/istio-control/istio-discovery/files/injection-template.yaml

              audience: {{ .Values.global.sds.token.aud }}
      {{- 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: Fri May 10 21:01:52 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  10. manifests/charts/istio-control/istio-discovery/files/grpc-agent.yaml

      {{- else }}
      - emptyDir:
        name: workload-certs
      {{- end }}
      {{- if (isset .ObjectMeta.Annotations `sidecar.istio.io/bootstrapOverride`) }}
      - name: custom-bootstrap-volume
        configMap:
          name: {{ annotation .ObjectMeta `sidecar.istio.io/bootstrapOverride` "" }}
      {{- end }}
      # SDS channel between istioagent and Envoy
      - emptyDir:
          medium: Memory
        name: istio-xds
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 26 16:51:17 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top