Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 51 for service_account (0.28 sec)

  1. cluster/addons/volumesnapshots/volume-snapshot-controller/volume-snapshot-controller-deployment.yaml

      replicas: 1
      selector:
        matchLabels:
          app: volume-snapshot-controller
      template:
        metadata:
          labels:
            app: volume-snapshot-controller
        spec:
          serviceAccount: volume-snapshot-controller
          containers:
            - name: volume-snapshot-controller
              image: registry.k8s.io/sig-storage/snapshot-controller:v8.0.0
              args:
                - "--v=5"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 07:47:15 UTC 2024
    - 758 bytes
    - Viewed (0)
  2. cluster/addons/metrics-server/resource-reader.yaml

        kubernetes.io/cluster-service: "true"
        addonmanager.kubernetes.io/mode: Reconcile
    roleRef:
      apiGroup: rbac.authorization.k8s.io
      kind: ClusterRole
      name: system:metrics-server
    subjects:
    - kind: ServiceAccount
      name: metrics-server
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 26 01:57:01 UTC 2024
    - 988 bytes
    - Viewed (0)
  3. cluster/addons/ip-masq-agent/ip-masq-agent.yaml

    apiVersion: v1
    kind: ServiceAccount
    metadata:
      name: ip-masq-agent
      namespace: kube-system
      labels:
        k8s-app: ip-masq-agent
        kubernetes.io/cluster-service: "true"
        addonmanager.kubernetes.io/mode: Reconcile
    ---
    apiVersion: apps/v1
    kind: DaemonSet
    metadata:
      name: ip-masq-agent
      namespace: kube-system
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
    spec:
      selector:
        matchLabels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. cluster/gce/addons/konnectivity-agent/konnectivity-agent-ds.yaml

              name: konnectivity-agent
              command: ["/proxy-agent"]
              args: [
                      "--logtostderr=true",
                      "--ca-cert=/var/run/secrets/kubernetes.io/serviceaccount/ca.crt",
    __EXTRA_PARAMS__
                      "--proxy-server-host=__APISERVER_IP__",
                      "--proxy-server-port=8132",
                      "--sync-interval=5s",
                      "--sync-interval-cap=30s",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 10:31:11 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. samples/bookinfo/platform/kube/bookinfo-ratings-v2.yaml

    #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    #   See the License for the specific language governing permissions and
    #   limitations under the License.
    
    apiVersion: v1
    kind: ServiceAccount
    metadata:
      name: bookinfo-ratings-v2
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: ratings-v2
      labels:
        app: ratings
        version: v2
    spec:
      replicas: 1
      selector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. samples/addons/loki.yaml

    ---
    # Source: loki/templates/serviceaccount.yaml
    apiVersion: v1
    kind: ServiceAccount
    metadata:
      name: loki
      namespace: istio-system
      labels:
        helm.sh/chart: loki-6.6.3
        app.kubernetes.io/name: loki
        app.kubernetes.io/instance: loki
        app.kubernetes.io/version: "3.0.0"
        app.kubernetes.io/managed-by: Helm
    automountServiceAccountToken: true
    ---
    # Source: loki/templates/config.yaml
    apiVersion: v1
    kind: ConfigMap
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. cluster/addons/metrics-server/metrics-server-deployment.yaml

    apiVersion: v1
    kind: ServiceAccount
    metadata:
      name: metrics-server
      namespace: kube-system
      labels:
        kubernetes.io/cluster-service: "true"
        addonmanager.kubernetes.io/mode: Reconcile
    ---
    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: metrics-server-config
      namespace: kube-system
      labels:
        kubernetes.io/cluster-service: "true"
        addonmanager.kubernetes.io/mode: EnsureExists
    data:
      NannyConfiguration: |-
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 07:50:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. security/pkg/server/ca/server.go

    	ca             CertificateAuthority
    	serverCertTTL  time.Duration
    
    	nodeAuthorizer *MulticlusterNodeAuthorizor
    }
    
    type SaNode struct {
    	ServiceAccount types.NamespacedName
    	Node           string
    }
    
    func (s SaNode) String() string {
    	return s.Node + "/" + s.ServiceAccount.String()
    }
    
    // CreateCertificate handles an incoming certificate signing request (CSR). It does
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 17:35:26 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. cni/pkg/constants/constants.go

    	// K8s liveness and readiness endpoints
    	LivenessEndpoint   = "/healthz"
    	ReadinessEndpoint  = "/readyz"
    	ReadinessPort      = "8000"
    	ServiceAccountPath = "/var/run/secrets/kubernetes.io/serviceaccount"
    )
    
    // Exposed for testing "constants"
    var (
    	CNIBinDir     = "/opt/cni/bin"
    	HostCNIBinDir = "/host/opt/cni/bin"
    	// Well-known subpath we will mount any needed host-mounts under,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. pilot/cmd/pilot-agent/options/security.go

    		ProvCert:                       provCert,
    		ClusterID:                      clusterIDVar.Get(),
    		FileMountedCerts:               fileMountedCertsEnv,
    		WorkloadNamespace:              PodNamespaceVar.Get(),
    		ServiceAccount:                 serviceAccountVar.Get(),
    		XdsAuthProvider:                xdsAuthProvider.Get(),
    		TrustDomain:                    trustDomainEnv,
    		WorkloadRSAKeySize:             workloadRSAKeySizeEnv,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top