Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 107 for CertificateSigningRequest (0.54 sec)

  1. pkg/api/testing/defaulting_test.go

    		{Group: "batch", Version: "v2alpha1", Kind: "JobTemplate"}:                                                 {},
    		{Group: "certificates.k8s.io", Version: "v1beta1", Kind: "CertificateSigningRequest"}:                      {},
    		{Group: "certificates.k8s.io", Version: "v1beta1", Kind: "CertificateSigningRequestList"}:                  {},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/crdclient/types.gen.go

    			},
    			Spec:   &obj.Spec,
    			Status: &obj.Status,
    		}
    	},
    	gvk.CertificateSigningRequest: func(r runtime.Object) config.Config {
    		obj := r.(*k8sioapicertificatesv1.CertificateSigningRequest)
    		return config.Config{
    			Meta: config.Meta{
    				GroupVersionKind:  gvk.CertificateSigningRequest,
    				Name:              obj.Name,
    				Namespace:         obj.Namespace,
    				Labels:            obj.Labels,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 62.2K bytes
    - Viewed (0)
  3. pkg/printers/internalversion/printers_test.go

    		}
    	}
    }
    func TestPrintCertificateSigningRequest(t *testing.T) {
    	tests := []struct {
    		csr      certificates.CertificateSigningRequest
    		expected []metav1.TableRow
    	}{
    		// Basic CSR with no spec or status; defaults to status: Pending.
    		{
    			csr: certificates.CertificateSigningRequest{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:              "csr1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/server_test.go

    			certRotated: true,
    		},
    		{
    			name:        "valid cert no rotation",
    			certToWatch: testcerts.ServerCert,
    			certRotated: false,
    		},
    	}
    
    	csr := &cert.CertificateSigningRequest{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: "abc.xyz",
    		},
    		Status: cert.CertificateSigningRequestStatus{
    			Certificate: testcerts.ServerCert,
    		},
    	}
    	s := &Server{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger-with-shared-parameters.json

              },
              "type": "array",
              "x-kubernetes-list-type": "set"
            }
          },
          "type": "object"
        },
        "io.k8s.api.certificates.v1.CertificateSigningRequest": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 2.3M bytes
    - Viewed (0)
  6. api/openapi-spec/swagger.json

              },
              "type": "array",
              "x-kubernetes-list-type": "set"
            }
          },
          "type": "object"
        },
        "io.k8s.api.certificates.v1.CertificateSigningRequest": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  7. cmd/kubelet/app/options/options.go

    	tlsCipherPreferredValues := cliflag.PreferredTLSCipherNames()
    	tlsCipherInsecureValues := cliflag.InsecureTLSCipherNames()
    	fs.StringSliceVar(&c.TLSCipherSuites, "tls-cipher-suites", c.TLSCipherSuites,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  8. pkg/printers/internalversion/printers.go

    		if err != nil {
    			return nil, err
    		}
    		rows = append(rows, r...)
    	}
    	return rows, nil
    }
    
    func printCertificateSigningRequest(obj *certificates.CertificateSigningRequest, options printers.GenerateOptions) ([]metav1.TableRow, error) {
    	row := metav1.TableRow{
    		Object: runtime.RawExtension{Object: obj},
    	}
    	status := extractCSRStatus(obj)
    	signerName := "<none>"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger.json

            }
          },
          "type": "object"
        },
        "io.k8s.api.certificates.v1.CertificateSigningRequest": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 4.5M bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.19.md

    - CertificateSigningRequest API conditions were updated:
      - a `status` field was added; this field defaults to `True`, and may only be set to `True` for `Approved`, `Denied`, and `Failed` conditions
      - a `lastTransitionTime` field was added
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 05 05:42:32 UTC 2022
    - 489.7K bytes
    - Viewed (0)
Back to top