
update update code update unit tests hack/update remove spew update bazel updated add comments remove unused parameter remove hardcode bump unit tests add new flags add unit tests add bazel genreate doc
242 lines
7.6 KiB
Go
242 lines
7.6 KiB
Go
/*
|
|
Copyright 2017 The Kubernetes Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
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 cmd
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/json"
|
|
"fmt"
|
|
"io"
|
|
|
|
"github.com/ghodss/yaml"
|
|
"github.com/spf13/cobra"
|
|
|
|
"k8s.io/apimachinery/pkg/api/errors"
|
|
"k8s.io/apimachinery/pkg/api/meta"
|
|
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
"k8s.io/apimachinery/pkg/types"
|
|
apijson "k8s.io/apimachinery/pkg/util/json"
|
|
"k8s.io/kubernetes/pkg/api/annotations"
|
|
"k8s.io/kubernetes/pkg/kubectl"
|
|
"k8s.io/kubernetes/pkg/kubectl/cmd/templates"
|
|
cmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util"
|
|
"k8s.io/kubernetes/pkg/kubectl/resource"
|
|
)
|
|
|
|
type SetLastAppliedOptions struct {
|
|
FilenameOptions resource.FilenameOptions
|
|
Selector string
|
|
InfoList []*resource.Info
|
|
Mapper meta.RESTMapper
|
|
Typer runtime.ObjectTyper
|
|
Namespace string
|
|
EnforceNamespace bool
|
|
DryRun bool
|
|
ShortOutput bool
|
|
CreateAnnotation bool
|
|
Output string
|
|
Codec runtime.Encoder
|
|
PatchBufferList [][]byte
|
|
Factory cmdutil.Factory
|
|
Out io.Writer
|
|
ErrOut io.Writer
|
|
}
|
|
|
|
var (
|
|
applySetLastAppliedLong = templates.LongDesc(`
|
|
Set the latest last-applied-configuration annotations by setting it to match the contents of a file.
|
|
This results in the last-applied-configuration being updated as though 'kubectl apply -f <file>' was run,
|
|
without updating any other parts of the object.`)
|
|
|
|
applySetLastAppliedExample = templates.Examples(`
|
|
# Set the last-applied-configuration of a resource to match the contents of a file.
|
|
kubectl apply set-last-applied -f deploy.yaml
|
|
|
|
# Execute set-last-applied against each configuration file in a directory.
|
|
kubectl apply set-last-applied -f path/
|
|
|
|
# Set the last-applied-configuration of a resource to match the contents of a file, will create the annotation if it does not already exist.
|
|
kubectl apply set-last-applied -f deploy.yaml --create-annotation=true
|
|
`)
|
|
)
|
|
|
|
func NewCmdApplySetLastApplied(f cmdutil.Factory, out, err io.Writer) *cobra.Command {
|
|
options := &SetLastAppliedOptions{Out: out, ErrOut: err}
|
|
cmd := &cobra.Command{
|
|
Use: "set-last-applied -f FILENAME",
|
|
Short: "Set the last-applied-configuration annotation on a live object to match the contents of a file.",
|
|
Long: applySetLastAppliedLong,
|
|
Example: applySetLastAppliedExample,
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
cmdutil.CheckErr(options.Complete(f, cmd))
|
|
cmdutil.CheckErr(options.Validate(f, cmd))
|
|
cmdutil.CheckErr(options.RunSetLastApplied(f, cmd))
|
|
},
|
|
}
|
|
|
|
cmdutil.AddDryRunFlag(cmd)
|
|
cmdutil.AddRecordFlag(cmd)
|
|
cmdutil.AddPrinterFlags(cmd)
|
|
cmd.Flags().BoolVar(&options.CreateAnnotation, "create-annotation", false, "Will create 'last-applied-configuration' annotations if current objects doesn't have one")
|
|
usage := "that contains the last-applied-configuration annotations"
|
|
kubectl.AddJsonFilenameFlag(cmd, &options.FilenameOptions.Filenames, "Filename, directory, or URL to files "+usage)
|
|
|
|
return cmd
|
|
}
|
|
|
|
func (o *SetLastAppliedOptions) Complete(f cmdutil.Factory, cmd *cobra.Command) error {
|
|
o.DryRun = cmdutil.GetFlagBool(cmd, "dry-run")
|
|
o.Output = cmdutil.GetFlagString(cmd, "output")
|
|
o.ShortOutput = o.Output == "name"
|
|
o.Codec = f.JSONEncoder()
|
|
|
|
var err error
|
|
o.Mapper, o.Typer, err = f.UnstructuredObject()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
o.Namespace, o.EnforceNamespace, err = f.DefaultNamespace()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (o *SetLastAppliedOptions) Validate(f cmdutil.Factory, cmd *cobra.Command) error {
|
|
r := resource.NewBuilder(o.Mapper, o.Typer, resource.ClientMapperFunc(f.UnstructuredClientForMapping), unstructured.UnstructuredJSONScheme).
|
|
NamespaceParam(o.Namespace).DefaultNamespace().
|
|
FilenameParam(o.EnforceNamespace, &o.FilenameOptions).
|
|
Latest().
|
|
Flatten().
|
|
Do()
|
|
err := r.Err()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
err = r.Visit(func(info *resource.Info, err error) error {
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
var diffBuf, patchBuf []byte
|
|
patchBuf, diffBuf, err = o.getPatch(info)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// Verify the object exists in the cluster before trying to patch it.
|
|
if err := info.Get(); err != nil {
|
|
if errors.IsNotFound(err) {
|
|
return err
|
|
} else {
|
|
return cmdutil.AddSourceToErr(fmt.Sprintf("retrieving current configuration of:\n%v\nfrom server for:", info), info.Source, err)
|
|
}
|
|
}
|
|
oringalBuf, err := kubectl.GetOriginalConfiguration(info.Mapping, info.Object)
|
|
if err != nil {
|
|
return cmdutil.AddSourceToErr(fmt.Sprintf("retrieving current configuration of:\n%v\nfrom server for:", info), info.Source, err)
|
|
}
|
|
if oringalBuf == nil && !o.CreateAnnotation {
|
|
return cmdutil.UsageError(cmd, "no last-applied-configuration annotation found on resource: %s, to create the annotation, run the command with --create-annotation", info.Name)
|
|
}
|
|
|
|
//only add to PatchBufferList when changed
|
|
if !bytes.Equal(stripComments(oringalBuf), stripComments(diffBuf)) {
|
|
o.PatchBufferList = append(o.PatchBufferList, patchBuf)
|
|
o.InfoList = append(o.InfoList, info)
|
|
} else {
|
|
fmt.Fprintf(o.Out, "set-last-applied %s: no changes required.\n", info.Name)
|
|
}
|
|
|
|
return nil
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (o *SetLastAppliedOptions) RunSetLastApplied(f cmdutil.Factory, cmd *cobra.Command) error {
|
|
for i, patch := range o.PatchBufferList {
|
|
info := o.InfoList[i]
|
|
if !o.DryRun {
|
|
mapping := info.ResourceMapping()
|
|
client, err := f.UnstructuredClientForMapping(mapping)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
helper := resource.NewHelper(client, mapping)
|
|
patchedObj, err := helper.Patch(o.Namespace, info.Name, types.MergePatchType, patch)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if len(o.Output) > 0 && !o.ShortOutput {
|
|
info.Refresh(patchedObj, false)
|
|
return cmdutil.PrintResourceInfoForCommand(cmd, info, f, o.Out)
|
|
}
|
|
cmdutil.PrintSuccess(o.Mapper, o.ShortOutput, o.Out, info.Mapping.Resource, info.Name, o.DryRun, "configured")
|
|
|
|
} else {
|
|
err := o.formatPrinter(o.Output, patch)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
cmdutil.PrintSuccess(o.Mapper, o.ShortOutput, o.Out, info.Mapping.Resource, info.Name, o.DryRun, "configured")
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (o *SetLastAppliedOptions) formatPrinter(output string, buf []byte) error {
|
|
yamlOutput, err := yaml.JSONToYAML(buf)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
switch output {
|
|
case "json":
|
|
jsonBuffer := &bytes.Buffer{}
|
|
err = json.Indent(jsonBuffer, buf, "", " ")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
fmt.Fprintf(o.Out, string(jsonBuffer.Bytes()))
|
|
case "yaml":
|
|
fmt.Fprintf(o.Out, string(yamlOutput))
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (o *SetLastAppliedOptions) getPatch(info *resource.Info) ([]byte, []byte, error) {
|
|
objMap := map[string]map[string]map[string]string{}
|
|
metadataMap := map[string]map[string]string{}
|
|
annotationsMap := map[string]string{}
|
|
localFile, err := runtime.Encode(o.Codec, info.VersionedObject)
|
|
if err != nil {
|
|
return nil, localFile, err
|
|
}
|
|
annotationsMap[annotations.LastAppliedConfigAnnotation] = string(localFile)
|
|
metadataMap["annotations"] = annotationsMap
|
|
objMap["metadata"] = metadataMap
|
|
jsonString, err := apijson.Marshal(objMap)
|
|
return jsonString, localFile, err
|
|
}
|