Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 797 for configmap3 (0.32 sec)

  1. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-absolute-override.yaml

              {{ end }}
              {{- end }}
          volumes:
          {{- if (isset .ObjectMeta.Annotations `sidecar.istio.io/bootstrapOverride`) }}
          - name: custom-bootstrap-volume
            configMap:
              name: {{ annotation .ObjectMeta `sidecar.istio.io/bootstrapOverride` "" }}
          {{- end }}
          - emptyDir:
              medium: Memory
            name: istio-envoy
          {{- if .Values.global.sds.enabled }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  2. manifests/charts/istiod-remote/templates/role.yaml

      verbs: ["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"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 04 16:21:31 UTC 2023
    - 1021 bytes
    - Viewed (0)
  3. manifests/charts/istio-control/istio-discovery/templates/role.yaml

      verbs: ["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"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 04 16:21:31 UTC 2023
    - 971 bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/kubelet/config.go

    	if err != nil {
    		return err
    	}
    
    	configMap := &v1.ConfigMap{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      configMapName,
    			Namespace: metav1.NamespaceSystem,
    		},
    		Data: map[string]string{
    			kubeadmconstants.KubeletBaseConfigurationConfigMapKey: string(kubeletBytes),
    		},
    	}
    
    	if !kubeletCfg.IsUserSupplied() {
    		componentconfigs.SignConfigMap(configMap)
    	}
    
    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. pkg/kube/krt/collection_test.go

    	Results := krt.NewCollection(pods, func(ctx krt.HandlerContext, i *corev1.Pod) *Result {
    		foos := krt.Fetch(ctx, configMaps, krt.FilterLabel(lblFoo))
    		bars := krt.Fetch(ctx, configMaps, krt.FilterLabel(lblBar))
    		names := slices.Map(foos, func(f *corev1.ConfigMap) string { return f.Name })
    		names = append(names, slices.Map(bars, func(f *corev1.ConfigMap) string { return f.Name })...)
    		names = slices.Sort(names)
    		return &Result{
    			Named:   NewNamed(i),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/injection/injection-image.go

    			gvk.Namespace,
    			gvk.Pod,
    			gvk.ConfigMap,
    			gvk.MeshConfig,
    			gvk.ProxyConfig,
    		},
    	}
    }
    
    // Analyze implements Analyzer.
    func (a *ImageAnalyzer) Analyze(c analysis.Context) {
    	proxyImageMap := make(map[string]string)
    
    	// when multiple injector configmaps exist, we may need to assess them respectively.
    	c.ForEach(gvk.ConfigMap, func(r *resource.Instance) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/discovery/file/file.go

    				return false, nil
    			}
    			return true, nil
    		})
    	if err != nil {
    		return nil, errors.Wrapf(lastError, "Abort reading the %s ConfigMap after timeout of %v",
    			bootstrapapi.ConfigMapClusterInfo, discoveryTimeout)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:55 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. cluster/addons/dns-horizontal-autoscaler/dns-horizontal-autoscaler.yaml

        verbs: ["get", "update"]
      - apiGroups: ["apps"]
        resources: ["deployments/scale", "replicasets/scale"]
        verbs: ["get", "update"]
    # Remove the configmaps rule once below issue is fixed:
    # kubernetes-incubator/cluster-proportional-autoscaler#16
      - apiGroups: [""]
        resources: ["configmaps"]
        verbs: ["get", "create"]
    ---
    kind: ClusterRoleBinding
    apiVersion: rbac.authorization.k8s.io/v1
    metadata:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/injection/injection.go

    			return true
    		}
    
    		// verify the enableNamespacesByDefault flag in injection configmaps
    		c.ForEach(gvk.ConfigMap, func(r *resource.Instance) bool {
    			injectionCMName := util.GetInjectorConfigMapName(nsRevision)
    			if r.Metadata.FullName.Name.String() == injectionCMName {
    				cm := r.Message.(*v1.ConfigMap)
    				enableNamespacesByDefault = GetEnableNamespacesByDefaultFromInjectedConfigMap(cm)
    				return false
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-with-revision-canary.yaml

              {{ end }}
              {{- end }}
          volumes:
          {{- if (isset .ObjectMeta.Annotations `sidecar.istio.io/bootstrapOverride`) }}
          - name: custom-bootstrap-volume
            configMap:
              name: {{ annotation .ObjectMeta `sidecar.istio.io/bootstrapOverride` "" }}
          {{- end }}
          - emptyDir:
              medium: Memory
            name: istio-envoy
          {{- if .Values.global.sds.enabled }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
Back to top