Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 393 for ServiceAccountName (0.8 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.proto

      map<string, string> nodeSelector = 7;
    
      // ServiceAccountName is the name of the ServiceAccount to use to run this carp.
      // More info: https://kubernetes.io/docs/concepts/security/service-accounts/
      // +optional
      optional string serviceAccountName = 8;
    
      // DeprecatedServiceAccount is a deprecated alias for ServiceAccountName.
      // Deprecated: Use serviceAccountName instead.
      // +k8s:conversion-gen=false
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. operator/cmd/mesh/testdata/manifest-generate/output/pilot_override_values.golden.yaml

                  apiVersion: v1
                  fieldPath: metadata.namespace
            - name: SERVICE_ACCOUNT
              valueFrom:
                fieldRef:
                  apiVersion: v1
                  fieldPath: spec.serviceAccountName
            - name: KUBECONFIG
              value: /var/run/secrets/remote/config
            - name: PILOT_TRACE_SAMPLING
              value: "1"
            - name: PILOT_ENABLE_ANALYSIS
              value: "false"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  3. samples/ambient-argo/application/details.yaml

    spec:
      replicas: 1
      selector:
        matchLabels:
          app: details
          version: v1
      template:
        metadata:
          labels:
            app: details
            version: v1
        spec:
          serviceAccountName: bookinfo-details
          containers:
          - name: details
            image: docker.io/istio/examples-bookinfo-details-v1:1.18.0
            imagePullPolicy: IfNotPresent
            ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 1021 bytes
    - Viewed (0)
  4. pkg/apis/core/v1/conversion.go

    	if err := autoConvert_v1_PodSpec_To_core_PodSpec(in, out, s); err != nil {
    		return err
    	}
    
    	// We support DeprecatedServiceAccount as an alias for ServiceAccountName.
    	// If both are specified, ServiceAccountName (the new field) wins.
    	if in.ServiceAccountName == "" {
    		out.ServiceAccountName = in.DeprecatedServiceAccount
    	}
    
    	// the host namespace fields have to be handled specially for backward compatibility
    	// with v1.0.0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 22:30:55 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/apis/example/v1/generated.proto

      map<string, string> nodeSelector = 7;
    
      // ServiceAccountName is the name of the ServiceAccount to use to run this pod.
      // More info: https://kubernetes.io/docs/concepts/security/service-accounts/
      // +optional
      optional string serviceAccountName = 8;
    
      // DeprecatedServiceAccount is a deprecated alias for ServiceAccountName.
      // Deprecated: Use serviceAccountName instead.
      // +k8s:conversion-gen=false
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. common-protos/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.proto

      map<string, string> nodeSelector = 7;
    
      // ServiceAccountName is the name of the ServiceAccount to use to run this carp.
      // More info: https://kubernetes.io/docs/concepts/security/service-accounts/
      // +optional
      optional string serviceAccountName = 8;
    
      // DeprecatedServiceAccount is a depreciated alias for ServiceAccountName.
      // Deprecated: Use serviceAccountName instead.
      // +k8s:conversion-gen=false
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. manifests/charts/istiod-remote/files/gateway-injection-template.yaml

      - name: istio-certs
        secret:
          optional: true
          {{ if eq .Spec.ServiceAccountName "" }}
          secretName: istio.default
          {{ else -}}
          secretName: {{  printf "istio.%s" .Spec.ServiceAccountName }}
          {{  end -}}
      {{- end }}
      {{- if .Values.global.imagePullSecrets }}
      imagePullSecrets:
        {{- range .Values.global.imagePullSecrets }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. samples/ambient-argo/application/ratings.yaml

    spec:
      replicas: 1
      selector:
        matchLabels:
          app: ratings
          version: v1
      template:
        metadata:
          labels:
            app: ratings
            version: v1
        spec:
          serviceAccountName: bookinfo-ratings
          containers:
          - name: ratings
            image: docker.io/istio/examples-bookinfo-ratings-v1:1.18.0
            imagePullPolicy: IfNotPresent
            ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 1021 bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/manifest-generate/output/pilot_k8s_settings.golden.yaml

                  apiVersion: v1
                  fieldPath: metadata.namespace
            - name: SERVICE_ACCOUNT
              valueFrom:
                fieldRef:
                  apiVersion: v1
                  fieldPath: spec.serviceAccountName
            - name: KUBECONFIG
              value: /var/run/secrets/remote/config
            - name: PILOT_TRACE_SAMPLING
              value: "1"
            - name: PILOT_ENABLE_ANALYSIS
              value: "false"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 06 02:56:54 UTC 2023
    - 5K bytes
    - Viewed (0)
  10. manifests/charts/istio-control/istio-discovery/files/gateway-injection-template.yaml

      - name: istio-certs
        secret:
          optional: true
          {{ if eq .Spec.ServiceAccountName "" }}
          secretName: istio.default
          {{ else -}}
          secretName: {{  printf "istio.%s" .Spec.ServiceAccountName }}
          {{  end -}}
      {{- end }}
      {{- if .Values.global.imagePullSecrets }}
      imagePullSecrets:
        {{- range .Values.global.imagePullSecrets }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top