Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 66 for configmaps (0.2 sec)

  1. pkg/controlplane/storageversionhashdata/data.go

    	"authorization.k8s.io/v1/subjectaccessreviews",
    )
    
    // GVRToStorageVersionHash shouldn't change unless we intentionally change the
    // storage version of a resource.
    var GVRToStorageVersionHash = map[string]string{
    	"v1/configmaps":             "qFsyl6wFWjQ=",
    	"v1/endpoints":              "fWeeMqaN/OA=",
    	"v1/events":                 "r2yiGXH7wu8=",
    	"v1/limitranges":            "EBKMFVe6cwo=",
    	"v1/namespaces":             "Q3oi5N2YM8M=",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:14:51 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. manifests/charts/istio-control/istio-discovery/templates/clusterrole.yaml

        verbs: ["get", "list", "watch"]
      - apiGroups: ["networking.k8s.io"]
        resources: ["ingresses/status"]
        verbs: ["*"]
    
      # required for CA's namespace controller
      - apiGroups: [""]
        resources: ["configmaps"]
        verbs: ["create", "get", "list", "watch", "update"]
    
      # Istiod and bootstrap.
    {{- $omitCertProvidersForClusterRole := list "istiod" "custom" "none"}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. manifests/charts/istiod-remote/templates/clusterrole.yaml

        verbs: ["get", "list", "watch"]
      - apiGroups: ["networking.k8s.io"]
        resources: ["ingresses/status"]
        verbs: ["*"]
    
      # required for CA's namespace controller
      - apiGroups: [""]
        resources: ["configmaps"]
        verbs: ["create", "get", "list", "watch", "update"]
    
      # Istiod and bootstrap.
    {{- $omitCertProvidersForClusterRole := list "istiod" "custom" "none"}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. tests/integration/security/ca_custom_root/secure_naming_test.go

    }
    
    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. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/configmap_cafile_content.go

    }
    
    // loadCABundle determines the next set of content for the file.
    func (c *ConfigMapCAController) loadCABundle() error {
    	configMap, err := c.configmapLister.ConfigMaps(c.configmapNamespace).Get(c.configmapName)
    	if err != nil {
    		return err
    	}
    	caBundle := configMap.Data[c.configmapKey]
    	if len(caBundle) == 0 {
    		return fmt.Errorf("missing content for CA bundle %q", c.Name())
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/list_work_estimator.go

    		// requests in storage layer so their width should be 1.
    		// Example of such list requests:
    		// /apis/certificates.k8s.io/v1/certificatesigningrequests?fieldSelector=metadata.name%3Dcsr-xxs4m
    		// /api/v1/namespaces/test/configmaps?fieldSelector=metadata.name%3Dbig-deployment-1&limit=500&resourceVersion=0
    		return WorkEstimate{InitialSeats: minSeats}
    	}
    
    	query := r.URL.Query()
    	listOptions := metav1.ListOptions{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 7K bytes
    - Viewed (0)
  9. pilot/pkg/leaderelection/leaderelection.go

    	// GatewayDeploymentController controls translating Kubernetes Gateway objects into various derived
    	// resources (Service, Deployment, etc).
    	// Unlike other types which use ConfigMaps, we use a Lease here. This is because:
    	// * Others use configmap for backwards compatibility
    	// * This type is per-revision, so it is higher cost. Leases are cheaper
    	// * Other types use "prioritized leader election", which isn't implemented for Lease
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  10. manifests/charts/istio-control/istio-discovery/templates/configmap.yaml

    {{- $originalMesh := include "mesh" . | fromYaml }}
    {{- $mesh := mergeOverwrite $originalMesh .Values.meshConfig }}
    
    {{- if .Values.pilot.configMap }}
    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: istio{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
      namespace: {{ .Release.Namespace }}
      labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top