Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 952 for Credential (0.27 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. docs/sts/ldap.go

    	"net/url"
    	"os"
    	"time"
    
    	"github.com/minio/minio-go/v7"
    	cr "github.com/minio/minio-go/v7/pkg/credentials"
    )
    
    var (
    	// LDAP integrated Minio endpoint
    	stsEndpoint string
    
    	// LDAP credentials
    	ldapUsername string
    	ldapPassword string
    
    	// Display credentials flag
    	displayCreds bool
    
    	// Credential expiry duration
    	expiryDuration time.Duration
    
    	// Bucket to list
    	bucketToList string
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 19 18:05:16 UTC 2022
    - 4K bytes
    - Viewed (0)
  8. pilot/cmd/pilot-agent/options/security.go

    	credFetcher, err := credentialfetcher.NewCredFetcher(credFetcherTypeEnv, o.TrustDomain, jwtPath, o.CredIdentityProvider)
    	if err != nil {
    		return nil, fmt.Errorf("failed to create credential fetcher: %v", err)
    	}
    	log.Infof("using credential fetcher of %s type in %s trust domain", credFetcherTypeEnv, o.TrustDomain)
    	o.CredFetcher = credFetcher
    
    	if o.CAProviderName == security.GkeWorkloadCertificateProvider {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  9. releasenotes/notes/27947.yaml

    area: security
    issue:
    - 27947
    
    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 16 01:03:11 UTC 2020
    - 291 bytes
    - Viewed (0)
  10. pkg/config/validation/agent/validation_test.go

    				CredentialName:    "credential",
    				ClientCertificate: "",
    				PrivateKey:        "",
    				CaCertificates:    "ca",
    			},
    			valid: false,
    		},
    		{
    			name: "MUTUAL: Credential Name set correctly",
    			tls: &networking.ClientTLSSettings{
    				Mode:              networking.ClientTLSSettings_MUTUAL,
    				CredentialName:    "some credential",
    				ClientCertificate: "",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 39.1K bytes
    - Viewed (0)
Back to top