Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for Credential (0.14 sec)

  1. pilot/pkg/model/gateway.go

    			cn := s.GetTls().GetCredentialName()
    			if cn != "" && proxy.VerifiedIdentity != nil {
    				rn := credentials.ToResourceName(cn)
    				parse, _ := credentials.ParseResourceName(rn, proxy.VerifiedIdentity.Namespace, "", "")
    				if gatewayConfig.Namespace == proxy.VerifiedIdentity.Namespace && parse.Namespace == proxy.VerifiedIdentity.Namespace {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  2. cmd/sftp-server-driver.go

    import (
    	"bytes"
    	"context"
    	"errors"
    	"fmt"
    	"io"
    	"os"
    	"path"
    	"strings"
    	"sync"
    	"time"
    
    	"github.com/minio/madmin-go/v3"
    	"github.com/minio/minio-go/v7"
    	"github.com/minio/minio-go/v7/pkg/credentials"
    	xioutil "github.com/minio/minio/internal/ioutil"
    	"github.com/minio/pkg/v3/mimedb"
    	"github.com/pkg/sftp"
    	"golang.org/x/crypto/ssh"
    )
    
    // Maximum write offset for incoming SFTP blocks.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. cmd/handler-utils.go

    			if ok {
    				m[key] = strings.Join(value, ",")
    				break
    			}
    		}
    	}
    	return nil
    }
    
    // Returns access credentials in the request Authorization header.
    func getReqAccessCred(r *http.Request, region string) (cred auth.Credentials) {
    	cred, _, _ = getReqAccessKeyV4(r, region, serviceS3)
    	if cred.AccessKey == "" {
    		cred, _, _ = getReqAccessKeyV2(r)
    	}
    	return cred
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  4. pilot/test/xds/fake.go

    	"time"
    
    	endpoint "github.com/envoyproxy/go-control-plane/envoy/config/endpoint/v3"
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    	"google.golang.org/grpc"
    	"google.golang.org/grpc/credentials/insecure"
    	"google.golang.org/grpc/test/bufconn"
    	authorizationv1 "k8s.io/api/authorization/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/client-go/kubernetes/fake"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 16:08:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  5. tests/integration/telemetry/api/dashboard_test.go

    		"pilot-dashboard.json",
    		[]string{
    			"pilot_xds_push_errors",
    			"pilot_total_xds_internal_errors",
    			"pilot_xds_push_context_errors",
    			`pilot_xds_pushes{type!~"lds|cds|rds|eds"}`,
    			// We do not push credentials in this test
    			`pilot_xds_pushes{type="sds"}`,
    			"_timeout",
    			"_rejects",
    			// We do not simulate injection errors
    			"sidecar_injection_failure_total",
    			// In default install, we have no proxy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. cluster/gce/upgrade.sh

        curl_auth_arg=(-H "Authorization: Bearer ${KUBE_BEARER_TOKEN}")
      elif [[ -n ${KUBE_PASSWORD:-} ]]; then
        curl_auth_arg=(--user "${KUBE_USER}:${KUBE_PASSWORD}")
      else
        echo "can't get auth credentials for the current master"
        exit 1
      fi
    
      until curl --insecure "${curl_auth_arg[@]}" --max-time 5 \
        --fail --output /dev/null --silent "https://${KUBE_MASTER_IP}/healthz"; do
        printf "."
        sleep 2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  7. cmd/utils.go

    // testing.
    type OpenIDClientAppParams struct {
    	ClientID, ClientSecret, ProviderURL, RedirectURL string
    }
    
    // MockOpenIDTestUserInteraction - tries to login to dex using provided credentials.
    // It performs the user's browser interaction to login and retrieves the auth
    // code from dex and exchanges it for a JWT.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 22:00:34 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  8. pkg/features/kube_features.go

    	// owner: @andrewsykim
    	// alpha: v1.23
    	// beta: v1.29
    	//
    	// Disable in-tree functionality in kubelet to authenticate to cloud provider container registries for image pull credentials.
    	DisableKubeletCloudCredentialProviders featuregate.Feature = "DisableKubeletCloudCredentialProviders"
    
    	// owner: @HirazawaUi
    	// kep: http://kep.k8s.io/4004
    	// alpha: v1.29
    	// beta: v1.31
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
Back to top