Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 93 for service_account (0.42 sec)

  1. pkg/registry/core/serviceaccount/storage/storage_test.go

    	defer storage.Store.DestroyFunc()
    	test := genericregistrytest.New(t, storage.Store)
    	serviceAccount := validNewServiceAccount("foo")
    	serviceAccount.ObjectMeta = metav1.ObjectMeta{GenerateName: "foo-"}
    	test.TestCreate(
    		// valid
    		serviceAccount,
    		// invalid
    		&api.ServiceAccount{},
    		&api.ServiceAccount{
    			ObjectMeta: metav1.ObjectMeta{Name: "name with spaces"},
    		},
    	)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.ServiceAccount.pb

    SataQiu <******@****.***> 1713430345 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 508 bytes
    - Viewed (0)
  3. manifests/charts/istio-cni/values.yaml

        logging:
          level: info
    
        logAsJson: false
    
        # ImagePullSecrets for all ServiceAccount, list of secrets in the same namespace
        # to use for pulling any images in pods that reference this ServiceAccount.
        # For components that don't use ServiceAccounts (i.e. grafana, servicegraph, tracing)
        # ImagePullSecrets will be added to the corresponding Deployment(StatefulSet) objects.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. pilot/pkg/xds/cds_test.go

    				Name:     "http",
    			}},
    			SubjectAltNames: []string{"se-top"},
    			Resolution:      networking.ServiceEntry_STATIC,
    			Endpoints: []*networking.WorkloadEntry{{
    				Address:        "1.1.1.1",
    				ServiceAccount: "se-endpoint",
    			}},
    		},
    	}
    	seNONE := config.Config{
    		Meta: config.Meta{
    			Name:             "service-entry",
    			Namespace:        "test",
    			GroupVersionKind: gvk.ServiceEntry,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 02:06:39 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. pkg/kubeapiserver/options/plugins.go

    	exists.PluginName,                       // NamespaceExists
    	antiaffinity.PluginName,                 // LimitPodHardAntiAffinityTopology
    	limitranger.PluginName,                  // LimitRanger
    	serviceaccount.PluginName,               // ServiceAccount
    	noderestriction.PluginName,              // NodeRestriction
    	nodetaint.PluginName,                    // TaintNodesByCondition
    	alwayspullimages.PluginName,             // AlwaysPullImages
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 17:20:46 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/endpoint_builder.go

    	locality := util.LocalityToString(proxy.Locality)
    	out := &EndpointBuilder{
    		controller:     c,
    		metaNetwork:    proxy.Metadata.Network,
    		serviceAccount: proxy.Metadata.ServiceAccount,
    		locality: model.Locality{
    			Label:     locality,
    			ClusterID: c.Cluster(),
    		},
    		tlsMode:  model.GetTLSModeFromEndpointLabels(proxy.Labels),
    		nodeName: proxy.GetNodeName(),
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. pilot/pkg/xds/auth.go

    			continue
    		}
    		if proxy.Metadata.ServiceAccount != "" && spiffeID.ServiceAccount != proxy.Metadata.ServiceAccount {
    			continue
    		}
    		return &spiffeID, nil
    	}
    	return nil, fmt.Errorf("no identities (%v) matched %v/%v", identities, proxy.ConfigNamespace, proxy.Metadata.ServiceAccount)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/kube/templates/service.yaml

    {{- if .ServiceAccount }}
    apiVersion: v1
    kind: ServiceAccount
    metadata:
      name: {{ .Service }}
    ---
    {{- end }}
    apiVersion: v1
    kind: Service
    metadata:
      name: {{ .Service }}
    {{- if .ServiceLabels }}
      labels:
        app: {{ .Service }}
    {{- range $name, $value := .ServiceLabels }}
        {{$name}}: "{{$value}}"
    {{- end }}
    {{- else}}
      labels:
        app: {{ .Service }}
    {{- end }}
    {{- if .ServiceAnnotations }}
      annotations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 917 bytes
    - Viewed (0)
  9. cluster/addons/kube-network-policies/kube-network-policies-rbac.yaml

    roleRef:
      apiGroup: rbac.authorization.k8s.io
      kind: ClusterRole
      name: system:network-policies
    subjects:
    - kind: ServiceAccount
      name: kube-network-policies
      namespace: kube-system
    ---
    apiVersion: v1
    kind: ServiceAccount
    metadata:
      name: kube-network-policies
      namespace: kube-system
      labels:
        k8s-app: kube-network-policies
        kubernetes.io/cluster-service: "true"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 21 10:01:31 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. manifests/charts/gateway/templates/_helpers.tpl

    {{- with .Values.revision }}
    istio.io/rev: {{ . | quote }}
    {{- end }}
    {{- end }}
    
    {{- define "gateway.serviceAccountName" -}}
    {{- if .Values.serviceAccount.create }}
    {{- .Values.serviceAccount.name | default (include "gateway.name" .)    }}
    {{- else }}
    {{- .Values.serviceAccount.name | default "default" }}
    {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 22:42:29 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top