Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 187 for configVals (0.18 sec)

  1. operator/cmd/mesh/testdata/operator/output/operator-dump.json

                    "create",
                    "update"
                ]
            },
            {
                "apiGroups": [
                    ""
                ],
                "resources": [
                    "configmaps",
                    "endpoints",
                    "events",
                    "namespaces",
                    "pods",
                    "pods/proxy",
                    "pods/portforward",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 10 01:35:08 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. manifests/charts/istio-operator/templates/clusterrole.yaml

      - rolebindings
      verbs:
      - '*'
    - apiGroups:
      - coordination.k8s.io
      resources:
      - leases
      verbs:
      - get
      - create
      - update
    - apiGroups:
      - ""
      resources:
      - configmaps
      - endpoints
      - events
      - namespaces
      - pods
      - pods/proxy
      - pods/portforward
      - persistentvolumeclaims
      - secrets
      - services
      - serviceaccounts
      - resourcequotas
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. pkg/kube/inject/watcher.go

    	watcher, err := fsnotify.NewWatcher()
    	if err != nil {
    		return nil, err
    	}
    	// watch the parent directory of the target files so we can catch
    	// symlink updates of k8s ConfigMaps volumes.
    	watchDir, _ := filepath.Split(configFile)
    	if err := watcher.Add(watchDir); err != nil {
    		return nil, fmt.Errorf("could not watch %v: %v", watchDir, err)
    	}
    	return &fileWatcher{
    		watcher:    watcher,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    										Duration: 3 * time.Second,
    									},
    									Endpoint: "unix:///tmp/testprovider.sock",
    								},
    							},
    						},
    					},
    					{
    						Resources: []string{"configmaps"},
    						Providers: []apiserver.ProviderConfiguration{
    							{
    								KMS: &apiserver.KMSConfiguration{
    									Name:       "kms",
    									APIVersion: "v1",
    									Timeout: &metav1.Duration{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/bootstraptoken/clusterinfo/clusterinfo_test.go

    		{
    			"successful case should have no error",
    			true,
    			nil,
    			false,
    		},
    		{
    			"if configmap already exists, return error",
    			true,
    			apierrors.NewAlreadyExists(schema.GroupResource{Resource: "configmaps"}, "test"),
    			true,
    		},
    		{
    			"unexpected error should be returned",
    			true,
    			apierrors.NewUnauthorized("go away!"),
    			true,
    		},
    		{
    			"if the file does not exist, return error",
    			false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 18 11:14:32 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. pkg/controlplane/controller/clusterauthenticationtrust/cluster_authentication_trust_controller.go

    	return err
    }
    
    func writeConfigMap(configMapClient corev1client.ConfigMapsGetter, required *corev1.ConfigMap) error {
    	_, err := configMapClient.ConfigMaps(required.Namespace).Update(context.TODO(), required, metav1.UpdateOptions{})
    	if apierrors.IsNotFound(err) {
    		_, err := configMapClient.ConfigMaps(required.Namespace).Create(context.TODO(), required, metav1.CreateOptions{})
    		return err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  7. manifests/charts/istiod-remote/templates/reader-clusterrole.yaml

        verbs: ["create"]
      - apiGroups: ["authorization.k8s.io"]
        resources: ["subjectaccessreviews"]
        verbs: ["create"]
    {{- if .Values.global.externalIstiod }}
      - apiGroups: [""]
        resources: ["configmaps"]
        verbs: ["create", "get", "list", "watch", "update"]
      - apiGroups: ["admissionregistration.k8s.io"]
        resources: ["mutatingwebhookconfigurations"]
        verbs: ["get", "list", "watch", "update", "patch"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. tests/integration/pilot/common/routing.go

              "{{$data.Name}}":
                {{$data.Match}}: {{$data.Value}}
            {{- end }}
          {{- end }}
        route:
        - destination:
            host: {{ .dstSvc }}
    ---
    `
    	configAll := configRoute + `
    apiVersion: security.istio.io/v1beta1
    kind: RequestAuthentication
    metadata:
      name: default
      namespace: {{.SystemNamespace | default "istio-system"}}
    spec:
      jwtRules:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  9. pkg/quota/v1/evaluator/core/registry.go

    )
    
    // legacyObjectCountAliases are what we used to do simple object counting quota with mapped to alias
    var legacyObjectCountAliases = map[schema.GroupVersionResource]corev1.ResourceName{
    	corev1.SchemeGroupVersion.WithResource("configmaps"):             corev1.ResourceConfigMaps,
    	corev1.SchemeGroupVersion.WithResource("resourcequotas"):         corev1.ResourceQuotas,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 10 09:42:32 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1/types_encryption.go

    	apiVersion: apiserver.config.k8s.io/v1
    	resources:
    	- resources:
    	  - events
    	  providers:
    	  - identity: {}  # do not encrypt events even though *.* is specified below
    	- resources:
    	  - secrets
    	  - configmaps
    	  - pandas.awesome.bears.example
    	  providers:
    	  - aescbc:
    	      keys:
    	      - name: key1
    	        secret: c2VjcmV0IGlzIHNlY3VyZQ==
    	- resources:
    	  - '*.apps'
    	  providers:
    	  - aescbc:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 20:54:24 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top