Commit 33c45527 authored by Kubernetes Submit Queue's avatar Kubernetes Submit Queue Committed by GitHub

Merge pull request #42966 from apprenda/kubeadm_beta_banner

Automatic merge from submit-queue (batch tested with PRs 42969, 42966) kubeadm: update kubeadm banner to beta **What this PR does / why we need it**: Updates the intro banner for kubeadm, which used to state it is in alpha (but we are going to beta). This also updates the tagged github group (one that no longer exists) to the sig-cluster-lifecycle-misc group. **Special notes for your reviewer**: /cc @jbeda **Release note**: ```release-note NONE ```
parents c0ebd724 b0fbff65
...@@ -35,11 +35,11 @@ func NewKubeadmCommand(f cmdutil.Factory, in io.Reader, out, err io.Writer) *cob ...@@ -35,11 +35,11 @@ func NewKubeadmCommand(f cmdutil.Factory, in io.Reader, out, err io.Writer) *cob
kubeadm: easily bootstrap a secure Kubernetes cluster. kubeadm: easily bootstrap a secure Kubernetes cluster.
┌──────────────────────────────────────────────────────────┐ ┌──────────────────────────────────────────────────────────┐
│ KUBEADM IS ALPHA, DO NOT USE IT FOR PRODUCTION CLUSTERS! │ KUBEADM IS BETA, DO NOT USE IT FOR PRODUCTION CLUSTERS!
│ │ │ │
│ But, please try it out! Give us feedback at: │ │ But, please try it out! Give us feedback at: │
│ https://github.com/kubernetes/kubeadm/issues │ │ https://github.com/kubernetes/kubeadm/issues │
│ and at-mention @kubernetes/sig-cluster-lifecycle │ and at-mention @kubernetes/sig-cluster-lifecycle-misc
└──────────────────────────────────────────────────────────┘ └──────────────────────────────────────────────────────────┘
Example usage: Example usage:
......
...@@ -133,7 +133,7 @@ func NewCmdInit(out io.Writer) *cobra.Command { ...@@ -133,7 +133,7 @@ func NewCmdInit(out io.Writer) *cobra.Command {
func NewInit(cfgPath string, cfg *kubeadmapi.MasterConfiguration, skipPreFlight bool) (*Init, error) { func NewInit(cfgPath string, cfg *kubeadmapi.MasterConfiguration, skipPreFlight bool) (*Init, error) {
fmt.Println("[kubeadm] WARNING: kubeadm is in alpha, please do not use it for production clusters.") fmt.Println("[kubeadm] WARNING: kubeadm is in beta, please do not use it for production clusters.")
if cfgPath != "" { if cfgPath != "" {
b, err := ioutil.ReadFile(cfgPath) b, err := ioutil.ReadFile(cfgPath)
......
...@@ -133,7 +133,7 @@ type Join struct { ...@@ -133,7 +133,7 @@ type Join struct {
} }
func NewJoin(cfgPath string, args []string, cfg *kubeadmapi.NodeConfiguration, skipPreFlight bool) (*Join, error) { func NewJoin(cfgPath string, args []string, cfg *kubeadmapi.NodeConfiguration, skipPreFlight bool) (*Join, error) {
fmt.Println("[kubeadm] WARNING: kubeadm is in alpha, please do not use it for production clusters.") fmt.Println("[kubeadm] WARNING: kubeadm is in beta, please do not use it for production clusters.")
if cfgPath != "" { if cfgPath != "" {
b, err := ioutil.ReadFile(cfgPath) b, err := ioutil.ReadFile(cfgPath)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment