Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for authenticating (0.2 sec)

  1. src/cmd/go/alldocs.go

    //	GOROOT
    //		The root of the go tree.
    //	GOSUMDB
    //		The name of checksum database to use and optionally its public key and
    //		URL. See https://golang.org/ref/mod#authenticating.
    //	GOTOOLCHAIN
    //		Controls which Go toolchain is used. See https://go.dev/doc/toolchain.
    //	GOTMPDIR
    //		The directory where the go command will write
    //		temporary source files, packages, and binaries.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. cluster/gce/gci/configure-helper.sh

        cat <<EOF >/etc/gcp_authn.config
    clusters:
      - name: gcp-authentication-server
        cluster:
          server: ${GCP_AUTHN_URL}
    users:
      - name: kube-apiserver
        user:
          auth-provider:
            name: gcp
    current-context: webhook
    contexts:
    - context:
        cluster: gcp-authentication-server
        user: kube-apiserver
      name: webhook
    EOF
      fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  3. cmd/metrics-v2.go

    			},
    			{
    				Description: MetricDescription{
    					Namespace: nodeMetricNamespace,
    					Subsystem: iamSubsystem,
    					Name:      "plugin_authn_service_last_succ_seconds",
    					Help:      "When plugin authentication is configured, returns time (in seconds) since the last successful request to the service",
    					Type:      gaugeMetric,
    				},
    				Value: pluginAuthNMetrics.LastReachableSecs,
    			},
    			{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  4. cluster/gce/util.sh

    EOF
      fi
    }
    
    # cat the Kubelet config yaml for linux nodes
    function print-linux-node-kubelet-config {
      # Keep authentication.x509.clientCAFile in sync with CA_CERT_BUNDLE_PATH in configure-helper.sh
      cat <<EOF
    staticPodPath: /etc/kubernetes/manifests
    authentication:
      x509:
        clientCAFile: /etc/srv/kubernetes/pki/ca-certificates.crt
    EOF
    }
    
    # cat the Kubelet config yaml for windows nodes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  5. pkg/config/validation/validation.go

    			}
    		}
    		return warnings, multierror.Prefix(errs, fmt.Sprintf("invalid policy %s.%s:", cfg.Name, cfg.Namespace))
    	})
    
    // ValidateRequestAuthentication checks that request authentication spec is well-formed.
    var ValidateRequestAuthentication = RegisterValidateFunc("ValidateRequestAuthentication",
    	func(cfg config.Config) (Warning, error) {
    		in, ok := cfg.Spec.(*security_beta.RequestAuthentication)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  6. pkg/printers/internalversion/printers_test.go

    					},
    				},
    				RoleRef: rbac.RoleRef{
    					Kind: "Role",
    					Name: "extension-apiserver-authentication-reader",
    				},
    			},
    			options: printers.GenerateOptions{},
    			// Columns: Name, Age
    			expected: []metav1.TableRow{{Cells: []interface{}{"binding1", "Role/extension-apiserver-authentication-reader", "0s"}}},
    		},
    		// Generate options=Wide; print subject and roles.
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
Back to top