change current version from v1 to v1beta1

This commit is contained in:
Jingfang Liu
2018-12-20 15:32:06 -08:00
parent 6f566d7a38
commit 1cd99ab68e
24 changed files with 26 additions and 33 deletions

View File

@@ -17,9 +17,6 @@ limitations under the License.
package fix
import (
"log"
"strings"
"github.com/spf13/cobra"
"sigs.k8s.io/kustomize/pkg/commands/kustfile"
"sigs.k8s.io/kustomize/pkg/fs"
@@ -53,10 +50,6 @@ func RunFix(fSys fs.FileSystem) error {
if err != nil {
return err
}
msgs := m.DealWithMissingFields()
if len(msgs) > 0 {
log.Printf(strings.Join(msgs, "\n"))
}
return mf.Write(m)
}