Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 877 for Credential (0.37 sec)

  1. pkg/config/analysis/analyzers/testdata/destinationrule-simple-destination-credentialname.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: db-tls
    spec:
      host: mydbserver.prod.svc.cluster.local
      trafficPolicy:
        tls:
          mode: SIMPLE
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 217 bytes
    - Viewed (0)
  2. cluster/gce/config-common.sh

    # Directory of kubelet image credential provider binary files on windows
    export AUTH_PROVIDER_GCP_LINUX_BIN_DIR="${AUTH_PROVIDER_GCP_LINUX_BIN_DIR:-/home/kubernetes/bin}"
    # Location of kubelet image credential provider config file on windows
    export AUTH_PROVIDER_GCP_LINUX_CONF_FILE="${AUTH_PROVIDER_GCP_LINUX_CONF_FILE:-/home/kubernetes/cri-auth-config.yaml}"
    # Directory of kubelet image credential provider binary files on windows
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:06:08 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. src/syscall/exec_linux_test.go

    		}}
    		cmd.SysProcAttr.GidMappings = []syscall.SysProcIDMap{{
    			ContainerID: int(nobody),
    			HostID:      gid,
    			Size:        int(1),
    		}}
    
    		// Set credentials to run as user and group nobody.
    		cmd.SysProcAttr.Credential = &syscall.Credential{
    			Uid: nobody,
    			Gid: nobody,
    		}
    	}
    	if err := cmd.Run(); err != nil {
    		if testenv.SyscallIsNotSupported(err) {
    			t.Skipf("skipping: %v: %v", cmd, err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  4. releasenotes/notes/43921.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    issue:
      - 43891
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 17 11:51:20 UTC 2023
    - 240 bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/testdata/deployment/cluster-ip.yaml

            volumeMounts:
            - mountPath: /var/run/secrets/workload-spiffe-uds
              name: workload-socket
            - mountPath: /var/run/secrets/credential-uds
              name: credential-socket
            - mountPath: /var/run/secrets/workload-spiffe-credentials
              name: workload-certs
            - mountPath: /var/lib/istio/data
              name: istio-data
            - mountPath: /etc/istio/proxy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/testdata/deployment/infrastructure-labels-annotations.yaml

            volumeMounts:
            - mountPath: /var/run/secrets/workload-spiffe-uds
              name: workload-socket
            - mountPath: /var/run/secrets/credential-uds
              name: credential-socket
            - mountPath: /var/run/secrets/workload-spiffe-credentials
              name: workload-certs
            - mountPath: /var/lib/istio/data
              name: istio-data
            - mountPath: /etc/istio/proxy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. src/syscall/exec_freebsd.go

    // license that can be found in the LICENSE file.
    
    package syscall
    
    import (
    	"runtime"
    	"unsafe"
    )
    
    type SysProcAttr struct {
    	Chroot     string      // Chroot.
    	Credential *Credential // Credential.
    	Ptrace     bool        // Enable tracing.
    	Setsid     bool        // Create session.
    	// Setpgid sets the process group ID of the child to Pgid,
    	// or, if Pgid == 0, to the new child's process ID.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  8. pilot/pkg/xds/testdata/benchmarks/secrets.yaml

    {{- range $i := until .Services }}
    apiVersion: v1
    kind: Secret
    metadata:
      name: sds-credential-{{$i}}
      namespace: default
    type: kubernetes.io/tls
    data:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 15 18:40:09 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  9. src/syscall/exec_libc2.go

    //go:build darwin || (openbsd && !mips64)
    
    package syscall
    
    import (
    	"internal/abi"
    	"runtime"
    	"unsafe"
    )
    
    type SysProcAttr struct {
    	Chroot     string      // Chroot.
    	Credential *Credential // Credential.
    	Ptrace     bool        // Enable tracing.
    	Setsid     bool        // Create session.
    	// Setpgid sets the process group ID of the child to Pgid,
    	// or, if Pgid == 0, to the new child's process ID.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  10. security/pkg/credentialfetcher/fetcher_test.go

    			fetcherType:      "foo",
    			trustdomain:      "",
    			jwtPath:          "",
    			identityProvider: "",
    			expectedErr:      "invalid credential fetcher type foo",
    			expectedToken:    "",
    			expectedIdp:      "",
    		},
    	}
    
    	// Disable token refresh for GCE VM credential fetcher.
    	plugin.SetTokenRotation(false)
    	for id, tc := range testCases {
    		id, tc := id, tc
    		t.Run(id, func(t *testing.T) {
    			t.Parallel()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 03 20:21:32 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top