Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 287 for Credential (0.18 sec)

  1. manifests/charts/gateways/istio-egress/templates/deployment.yaml

              volumeMounts:
              - name: workload-socket
                mountPath: /var/run/secrets/workload-spiffe-uds
              - name: credential-socket
                mountPath: /var/run/secrets/credential-uds
              - name: workload-certs
                mountPath: /var/run/secrets/workload-spiffe-credentials
              - name: istio-envoy
                mountPath: /etc/istio/proxy
              - name: config-volume
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. tests/integration/security/egress_sidecar_tls_origination_test.go

    	// nolint: staticcheck
    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    			var (
    				credNameGeneric  = "mtls-credential-generic"
    				fakeCredName     = "fake-mtls-credential"
    				credWithCRL      = "mtls-credential-generic-valid-crl"
    				credWithDummyCRL = "mtls-credential-generic-dummy-crl"
    			)
    
    			// Create a valid kubernetes secret to provision key/cert for sidecar.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. manifests/charts/istio-control/istio-discovery/files/kube-gateway.yaml

            - name: workload-socket
              mountPath: /var/run/secrets/workload-spiffe-uds
            - name: credential-socket
              mountPath: /var/run/secrets/credential-uds
            {{- if eq .Values.global.caName "GkeWorkloadCertificate" }}
            - name: gke-workload-certificate
              mountPath: /var/run/secrets/workload-spiffe-credentials
              readOnly: true
            {{- else }}
            - name: workload-certs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. prow/lib.sh

    function setup_gcloud_credentials() {
      if [[ $(command -v gcloud) ]]; then
        gcloud auth configure-docker us-docker.pkg.dev -q
      elif [[ $(command -v docker-credential-gcr) ]]; then
        docker-credential-gcr configure-docker --registries=-us-docker.pkg.dev
      else
        echo "No credential helpers found, push to docker may not function properly"
      fi
    }
    
    function setup_and_export_git_sha() {
      if [[ -n "${CI:-}" ]]; then
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheMavenPublishIntegrationTest.groovy

            def rootModule = repository.module("group", "root")
            rootModule.pom.expectPublish(true, credentials)
            rootModule.moduleMetadata.expectPublish(true, credentials)
            rootModule.rootMetaData.expectGetMissing(credentials)
            rootModule.rootMetaData.expectPublish(true, credentials)
        }
    
        private Map<File, String> mavenRepoFiles() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  6. cmd/server-startup-msg.go

    			u.Host = u.Hostname()
    		}
    		newAPIEndpoints[i] = u.String()
    	}
    	return newAPIEndpoints
    }
    
    // Prints common server startup message. Prints credential, region and browser access.
    func printServerCommonMsg(apiEndpoints []string) {
    	// Get saved credentials.
    	cred := globalActiveCred
    
    	// Get saved region.
    	region := globalSite.Region()
    
    	apiEndpointStr := strings.TrimSpace(strings.Join(apiEndpoints, "  "))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  7. pkg/registry/core/serviceaccount/storage/storage_test.go

    	}
    
    	auditContext := audit.AuditContextFrom(ctx)
    	issuedCredentialID, ok := auditContext.Event.Annotations["authentication.kubernetes.io/issued-credential-id"]
    	if !ok || len(issuedCredentialID) == 0 {
    		t.Errorf("did not find issued-credential-id in audit event annotations")
    	}
    }
    
    func TestUpdate(t *testing.T) {
    	storage, server := newStorage(t)
    	defer server.Terminate(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/gateway_test.go

    										},
    									},
    								},
    							},
    						},
    					},
    				},
    				RequireClientCertificate: proto.BoolTrue,
    			},
    		},
    		{ // No credential name is specified, generate file paths for key/cert.
    			name: "no credential name no key no cert tls SIMPLE",
    			server: &networking.Server{
    				Hosts: []string{"httpbin.example.com", "bookinfo.example.com"},
    				Port: &networking.Port{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  9. pkg/envoy/proxy.go

    	}
    	cmd.Stdout = os.Stdout
    	cmd.Stderr = os.Stderr
    	if e.AgentIsRoot {
    		cmd.SysProcAttr = &syscall.SysProcAttr{}
    		cmd.SysProcAttr.Credential = &syscall.Credential{
    			Uid: 1337,
    			Gid: 1337,
    		}
    	}
    
    	if err := cmd.Start(); err != nil {
    		return err
    	}
    	done := make(chan error, 1)
    	go func() {
    		done <- cmd.Wait()
    	}()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inputs/traffic-params.yaml.7.template.gen.yaml

            - name: workload-socket
              mountPath: /var/run/secrets/workload-spiffe-uds
            - name: credential-socket
              mountPath: /var/run/secrets/credential-uds
            {{- if eq .Values.global.caName "GkeWorkloadCertificate" }}
            - name: gke-workload-certificate
              mountPath: /var/run/secrets/workload-spiffe-credentials
              readOnly: true
            {{- else }}
            - name: workload-certs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
Back to top