...

Source file src/k8s.io/kubernetes/cmd/kubeadm/app/apis/output/v1alpha3/doc.go

Documentation: k8s.io/kubernetes/cmd/kubeadm/app/apis/output/v1alpha3

     1  /*
     2  Copyright 2024 The Kubernetes Authors.
     3  
     4  Licensed under the Apache License, Version 2.0 (the "License");
     5  you may not use this file except in compliance with the License.
     6  You may obtain a copy of the License at
     7  
     8      http://www.apache.org/licenses/LICENSE-2.0
     9  
    10  Unless required by applicable law or agreed to in writing, software
    11  distributed under the License is distributed on an "AS IS" BASIS,
    12  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    13  See the License for the specific language governing permissions and
    14  limitations under the License.
    15  */
    16  
    17  // +groupName=output.kubeadm.k8s.io
    18  // +k8s:deepcopy-gen=package
    19  // +k8s:conversion-gen=k8s.io/kubernetes/cmd/kubeadm/app/apis/output
    20  
    21  // Package v1alpha3 defines the v1alpha3 version of the kubeadm data structures
    22  // related to structured output
    23  // The purpose of the kubeadm structured output is to have a well
    24  // defined versioned output format that other software that uses
    25  // kubeadm for cluster deployments can use and rely on.
    26  //
    27  // Changes since v1alpha2:
    28  //   - Added support for outputting certificate expiration information for "kubeadm certs check-expiration"
    29  //     with the CertificateExpirationInfo structure.
    30  //   - Introduce a (breaking) change to the UpgradePlan structure used by "kubeadm upgrade plan".
    31  //     UpgradePlan now contains a list of AvailableUpgrade structures.
    32  package v1alpha3 // import "k8s.io/kubernetes/cmd/kubeadm/app/apis/output/v1alpha3"
    33  

View as plain text