Skip to content

Commit 8fcb4c1

Browse files
committed
feat(kubernetes): Apply
Adds apply support to the kubernetes provider. The provider should be feature complete now
1 parent 166614c commit 8fcb4c1

File tree

3 files changed

+45
-2
lines changed

3 files changed

+45
-2
lines changed

cmd/tk/provider.go

+13
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,19 @@ func applyCmd() *cobra.Command {
5151
Short: "[Requires Provider] apply the configuration to the target",
5252
}
5353
cmd.Run = func(cmd *cobra.Command, args []string) {
54+
raw, err := evalDict()
55+
if err != nil {
56+
log.Fatalln("evaluating jsonnet:", err)
57+
}
58+
59+
desired, err := prov.Reconcile(raw)
60+
if err != nil {
61+
log.Fatalln("reconciling:", err)
62+
}
63+
64+
if err := prov.Apply(desired); err != nil {
65+
log.Fatalln("applying:", err)
66+
}
5467
}
5568
return cmd
5669
}

pkg/provider/kubernetes/kubectl.go

+26
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,32 @@ func (k Kubectl) Get(namespace, kind, name string) (map[string]interface{}, erro
107107
return obj, nil
108108
}
109109

110+
// Apply applies the given yaml to the cluster
111+
func (k Kubectl) Apply(yaml string) error {
112+
if err := k.setupContext(); err != nil {
113+
return err
114+
}
115+
argv := []string{"apply",
116+
"--context", k.context,
117+
"-f", "-",
118+
}
119+
cmd := exec.Command("kubectl", argv...)
120+
cmd.Stdout = os.Stdout
121+
cmd.Stderr = os.Stderr
122+
123+
stdin, err := cmd.StdinPipe()
124+
if err != nil {
125+
return err
126+
}
127+
128+
go func() {
129+
fmt.Fprintln(stdin, yaml)
130+
stdin.Close()
131+
}()
132+
133+
return cmd.Run()
134+
}
135+
110136
// Diff takes a desired state as yaml and returns the differences
111137
// to the system in common diff format
112138
func (k Kubectl) Diff(yaml string) (string, error) {

pkg/provider/kubernetes/kubernetes.go

+6-2
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,12 @@ func (k *Kubernetes) Fmt(state interface{}) (string, error) {
5757
}
5858

5959
// Apply receives a state object generated using `Reconcile()` and may apply it to the target system
60-
func (k *Kubernetes) Apply(desired interface{}) error {
61-
panic("not implemented")
60+
func (k *Kubernetes) Apply(state interface{}) error {
61+
yaml, err := k.Fmt(state)
62+
if err != nil {
63+
return err
64+
}
65+
return client.Apply(yaml)
6266
}
6367

6468
// Diff takes the desired state and returns the differences from the cluster

0 commit comments

Comments
 (0)