Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 308 for serviceAccounts (0.72 sec)

  1. 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)
  2. samples/addons/prometheus.yaml

    ---
    # Source: prometheus/templates/serviceaccount.yaml
    apiVersion: v1
    kind: ServiceAccount
    metadata:
      labels:
        app.kubernetes.io/component: server
        app.kubernetes.io/name: prometheus
        app.kubernetes.io/instance: prometheus
        app.kubernetes.io/version: v2.52.0
        helm.sh/chart: prometheus-25.21.0
        app.kubernetes.io/managed-by: Helm
        app.kubernetes.io/part-of: prometheus
      name: prometheus
      namespace: istio-system
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  3. pkg/spiffe/spiffe.go

    func genSpiffeURI(td string, ns, serviceAccount string) (string, error) {
    	var err error
    	if ns == "" || serviceAccount == "" {
    		err = fmt.Errorf(
    			"namespace or service account empty for SPIFFE uri ns=%v serviceAccount=%v", ns, serviceAccount)
    	}
    	return URIPrefix + sanitizeTrustDomain(td) + "/ns/" + ns + "/sa/" + serviceAccount, err
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. api/openapi-spec/v3/api__v1_openapi.json

            "x-kubernetes-group-version-kind": {
              "group": "",
              "kind": "ServiceAccount",
              "version": "v1"
            }
          }
        },
        "/api/v1/namespaces/{namespace}/serviceaccounts/{name}": {
          "delete": {
            "description": "delete a ServiceAccount",
            "operationId": "deleteCoreV1NamespacedServiceAccount",
            "parameters": [
              {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. pkg/test/framework/components/echo/common/deployment/echos.go

    		Service:                 ASvc,
    		ServiceAccount:          true,
    		Ports:                   ports.All(),
    		Subsets:                 []echo.SubsetConfig{{}},
    		Locality:                "region.zone.subzone",
    		IncludeExtAuthz:         c.IncludeExtAuthz,
    		DisableAutomountSAToken: disableAutomountSAToken,
    	}
    
    	b := echo.Config{
    		Service:         BSvc,
    		ServiceAccount:  true,
    		Ports:           ports.All(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 16K bytes
    - Viewed (0)
Back to top