Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for certificates_v1alpha1 (4.82 sec)

  1. api/openapi-spec/v3/apis__certificates.k8s.io__v1alpha1_openapi.json

                },
                "description": "OK"
              },
              "401": {
                "description": "Unauthorized"
              }
            },
            "tags": [
              "certificates_v1alpha1"
            ]
          }
        },
        "/apis/certificates.k8s.io/v1alpha1/clustertrustbundles": {
          "delete": {
            "description": "delete collection of ClusterTrustBundle",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 119K bytes
    - Viewed (0)
  2. pkg/kubelet/clustertrustbundle/clustertrustbundle_manager_test.go

    	defer cancel()
    
    	ctb1 := &certificatesv1alpha1.ClusterTrustBundle{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: "ctb1",
    		},
    		Spec: certificatesv1alpha1.ClusterTrustBundleSpec{
    			TrustBundle: mustMakeRoot(t, "root1"),
    		},
    	}
    
    	ctb2 := &certificatesv1alpha1.ClusterTrustBundle{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: "ctb2",
    		},
    		Spec: certificatesv1alpha1.ClusterTrustBundleSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  3. pkg/apis/certificates/v1alpha1/register.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package v1alpha1
    
    import (
    	certificatesv1alpha1 "k8s.io/api/certificates/v1alpha1"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    )
    
    // GroupName is the group name used in this package.
    const GroupName = "certificates.k8s.io"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 03:10:18 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. pkg/kubelet/clustertrustbundle/clustertrustbundle_manager.go

    			m.dropCacheFor(new.(*certificatesv1alpha1.ClusterTrustBundle))
    		},
    		DeleteFunc: func(obj any) {
    			ctb, ok := obj.(*certificatesv1alpha1.ClusterTrustBundle)
    			if !ok {
    				tombstone, ok := obj.(cache.DeletedFinalStateUnknown)
    				if !ok {
    					return
    				}
    				ctb, ok = tombstone.Obj.(*certificatesv1alpha1.ClusterTrustBundle)
    				if !ok {
    					return
    				}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/client-go/applyconfigurations/certificates/v1alpha1/clustertrustbundle.go

    // Experimental!
    func ExtractClusterTrustBundleStatus(clusterTrustBundle *certificatesv1alpha1.ClusterTrustBundle, fieldManager string) (*ClusterTrustBundleApplyConfiguration, error) {
    	return extractClusterTrustBundle(clusterTrustBundle, fieldManager, "status")
    }
    
    func extractClusterTrustBundle(clusterTrustBundle *certificatesv1alpha1.ClusterTrustBundle, fieldManager string, subresource string) (*ClusterTrustBundleApplyConfiguration, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 03:10:59 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/roundtrip_test.go

    	autoscalingv2beta2 "k8s.io/api/autoscaling/v2beta2"
    	batchv1 "k8s.io/api/batch/v1"
    	batchv1beta1 "k8s.io/api/batch/v1beta1"
    	certificatesv1 "k8s.io/api/certificates/v1"
    	certificatesv1alpha1 "k8s.io/api/certificates/v1alpha1"
    	certificatesv1beta1 "k8s.io/api/certificates/v1beta1"
    	coordinationv1 "k8s.io/api/coordination/v1"
    	coordinationv1beta1 "k8s.io/api/coordination/v1beta1"
    	corev1 "k8s.io/api/core/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. pkg/volume/projected/projected_test.go

    							Path: "bundle.pem",
    						},
    					},
    				},
    				DefaultMode: utilptr.Int32(0644),
    			},
    			bundles: []runtime.Object{
    				&certificatesv1alpha1.ClusterTrustBundle{
    					ObjectMeta: metav1.ObjectMeta{
    						Name: "foo",
    					},
    					Spec: certificatesv1alpha1.ClusterTrustBundleSpec{
    						TrustBundle: string(goodCert1),
    					},
    				},
    			},
    			wantPayload: map[string]util.FileProjection{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 40.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger-with-shared-parameters.json

              },
              "401": {
                "description": "Unauthorized"
              }
            },
            "schemes": [
              "https"
            ],
            "tags": [
              "certificates_v1alpha1"
            ]
          }
        },
        "/apis/certificates.k8s.io/v1alpha1/clustertrustbundles": {
          "delete": {
            "consumes": [
              "*/*"
            ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 2.3M bytes
    - Viewed (0)
  9. pkg/volume/testing/volume_host.go

    func (f *fakeKubeletVolumeHost) GetHostUtil() hostutil.HostUtils {
    	return f.hostUtil
    }
    
    func (f *fakeKubeletVolumeHost) GetTrustAnchorsByName(name string, allowMissing bool) ([]byte, error) {
    	ctb, err := f.kubeClient.CertificatesV1alpha1().ClusterTrustBundles().Get(context.Background(), name, metav1.GetOptions{})
    	if err != nil {
    		return nil, fmt.Errorf("while getting ClusterTrustBundle %s: %w", name, err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  10. pkg/controlplane/instance.go

    	autoscalingapiv1 "k8s.io/api/autoscaling/v1"
    	autoscalingapiv2 "k8s.io/api/autoscaling/v2"
    	batchapiv1 "k8s.io/api/batch/v1"
    	certificatesapiv1 "k8s.io/api/certificates/v1"
    	certificatesv1alpha1 "k8s.io/api/certificates/v1alpha1"
    	coordinationapiv1 "k8s.io/api/coordination/v1"
    	apiv1 "k8s.io/api/core/v1"
    	discoveryv1 "k8s.io/api/discovery/v1"
    	eventsv1 "k8s.io/api/events/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.2K bytes
    - Viewed (0)
Back to top