Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 77 of 77 for authenticating (0.2 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

          "type": "string",
          "format": "date-time"
        }
      },
      "securityDefinitions": {
        "BearerToken": {
          "description": "Bearer Token authentication",
          "type": "apiKey",
          "name": "authorization",
          "in": "header"
        }
      },
      "security": [{ "BearerToken": [] }]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    	}
    
    	// verify changing the context fails storage
    	_, _, err = p.TransformFromStorage(ctx, out, value.DefaultContext("incorrect_context"))
    	if err != nil {
    		t.Fatalf("CBC mode does not support authentication: %v", err)
    	}
    
    	// reverse the order, use the second key
    	p = getTransformerFromEncryptionConfig(t, secondEncryptionConfig)
    	from, stale, err = p.TransformFromStorage(ctx, out, dataCtx)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

            "format": "date-time",
            "type": "string"
          }
        },
        "securitySchemes": {
          "BearerToken": {
            "description": "Bearer Token authentication",
            "in": "header",
            "name": "authorization",
            "type": "apiKey"
          }
        }
      },
      "info": {
        "title": "Kubernetes",
        "version": "unversioned"
      },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  4. tests/integration/ambient/baseline_test.go

    // limitations under the License.
    
    package ambient
    
    import (
    	"context"
    	"fmt"
    	"net/http"
    	"path/filepath"
    	"strconv"
    	"strings"
    	"testing"
    	"time"
    
    	authenticationv1 "k8s.io/api/authentication/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    
    	"istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/http/headers"
    	"istio.io/istio/pkg/kube/inject"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/route/route_test.go

    		Http: []*networking.HTTPRoute{
    			{
    				Match: []*networking.HTTPMatchRequest{
    					{
    						Name: "auth",
    						Headers: map[string]*networking.StringMatch{
    							"Authentication": {
    								MatchType: &networking.StringMatch_Regex{
    									Regex: "Bearer .+?\\..+?\\..+?",
    								},
    							},
    						},
    					},
    				},
    				Redirect: &networking.HTTPRedirect{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/generated.pb.go

    package v1
    
    import (
    	fmt "fmt"
    
    	io "io"
    
    	proto "github.com/gogo/protobuf/proto"
    	github_com_gogo_protobuf_sortkeys "github.com/gogo/protobuf/sortkeys"
    	v1 "k8s.io/api/authentication/v1"
    	v11 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	runtime "k8s.io/apimachinery/pkg/runtime"
    
    	math "math"
    	math_bits "math/bits"
    	reflect "reflect"
    	strings "strings"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 81.4K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.3.md

    * Fix PVC.Status.Capacity and AccessModes after binding ([#29982](https://github.com/kubernetes/kubernetes/pull/29982), [@jsafrane](https://github.com/jsafrane))
    * oidc authentication plugin: don't trim issuer URLs with trailing slashes ([#29860](https://github.com/kubernetes/kubernetes/pull/29860), [@ericchiang](https://github.com/ericchiang))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
Back to top