Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 573 for approved (0.37 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types.go

    	// KubernetesAPIApprovalPolicyConformant indicates that an API in *.k8s.io or *.kubernetes.io is or is not approved.  For CRDs
    	// outside those groups, this condition will not be set.  For CRDs inside those groups, the condition will
    	// be true if .metadata.annotations["api-approved.kubernetes.io"] is set to a URL, otherwise it will be false.
    	// See https://github.com/kubernetes/enhancements/pull/1111 for more details.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  2. pkg/kubelet/certificate/bootstrap/bootstrap.go

    // (Organization and CommonName for the CSR will be set as expected for node
    // certificates) and send it to API server, then it will watch the object's
    // status, once approved by API server, it will return the API server's issued
    // certificate (pem-encoded). If there is any errors, or the watch timeouts, it
    // will return an error. This is intended for use on nodes (kubelet and
    // kubeadm).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 27 08:04:25 UTC 2022
    - 14.2K bytes
    - Viewed (0)
  3. pkg/registry/core/pod/storage/eviction.go

    	// subresource handler will refuse to evict pods covered by the corresponding PDB
    	// if the size of the map exceeds this value. It means a large number of
    	// evictions have been approved by the API server but not noticed by the PDB controller yet.
    	// This situation should self-correct because the PDB controller removes
    	// entries from the map automatically after the PDB DeletionTimeout regardless.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 08 11:58:48 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  4. cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshots.yaml

    ---
    apiVersion: apiextensions.k8s.io/v1
    kind: CustomResourceDefinition
    metadata:
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
      annotations:
        controller-gen.kubebuilder.io/version: v0.8.0
        api-approved.kubernetes.io: "https://github.com/kubernetes-csi/external-snapshotter/pull/665"
      creationTimestamp: null
      name: volumesnapshots.snapshot.storage.k8s.io
    spec:
      group: snapshot.storage.k8s.io
      names:
        kind: VolumeSnapshot
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 26 07:24:12 UTC 2022
    - 20.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_repositories.adoc

    |No
    |Useful for enforcing large teams to use approved repositories only, but will not fail the build when a project or plugin declares a repository.
    
    |`FAIL_ON_PROJECT_REPOS`
    |Any repository declared directly in a project, either directly or via a plugin, will trigger a build error.
    |No
    |Useful for enforcing large teams to use approved repositories only.
    |===
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 43.2K bytes
    - Viewed (0)
  6. cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshotcontents.yaml

    ---
    apiVersion: apiextensions.k8s.io/v1
    kind: CustomResourceDefinition
    metadata:
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
      annotations:
        controller-gen.kubebuilder.io/version: v0.8.0
        api-approved.kubernetes.io: "https://github.com/kubernetes-csi/external-snapshotter/pull/665"
      creationTimestamp: null
      name: volumesnapshotcontents.snapshot.storage.k8s.io
    spec:
      group: snapshot.storage.k8s.io
      names:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 26 07:24:12 UTC 2022
    - 25.6K bytes
    - Viewed (0)
  7. pkg/printers/internalversion/printers.go

    	return []metav1.TableRow{row}, nil
    }
    
    func extractCSRStatus(csr *certificates.CertificateSigningRequest) string {
    	var approved, denied, failed bool
    	for _, c := range csr.Status.Conditions {
    		switch c.Type {
    		case certificates.CertificateApproved:
    			approved = true
    		case certificates.CertificateDenied:
    			denied = true
    		case certificates.CertificateFailed:
    			failed = true
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  8. pkg/printers/internalversion/printers_test.go

    			// Columns: Name, Age, SignerName, Requestor, RequestedDuration, Condition
    			expected: []metav1.TableRow{{Cells: []interface{}{"csr2", "0s", "example.com/test-signer", "CSR Requestor", "7d1h", "Approved"}}},
    		},
    		// Basic CSR with Spec and Status=Approved; certificate issued.
    		{
    			csr: certificates.CertificateSigningRequest{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:              "csr2",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_rules.adoc

    * The `default` version is resolved to a specific version via a dependency resolve rule, which looks up the version in a corporate catalog of approved modules.
    
    This rule implementation can be neatly encapsulated in a corporate plugin, and shared across all builds within the organisation.
    
    .Using a custom versioning scheme
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  10. cluster/gce/windows/k8s-node-setup.psm1

    #  - Always use single-quoted strings unless actually interpolating variables
    #    or using escape characters.
    #  - Use "approved verbs":
    #    https://docs.microsoft.com/en-us/powershell/developer/cmdlet/approved-verbs-for-windows-powershell-commands
    #  - Document functions using proper syntax:
    #    https://technet.microsoft.com/en-us/library/hh847834(v=wps.620).aspx
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
Back to top