-
Notifications
You must be signed in to change notification settings - Fork 172
/
Copy pathdiff.go
222 lines (188 loc) · 4.88 KB
/
diff.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
package kubernetes
import (
"fmt"
"github.com/Masterminds/semver"
"github.com/pkg/errors"
"github.com/grafana/tanka/pkg/kubernetes/client"
"github.com/grafana/tanka/pkg/kubernetes/manifest"
"github.com/grafana/tanka/pkg/kubernetes/util"
)
// Diff takes the desired state and returns the differences from the cluster
func (k *Kubernetes) Diff(state manifest.List, opts DiffOpts) (*string, error) {
// prevent https://github.com/kubernetes/kubernetes/issues/89762 until fixed
if k.ctl.Info().ClientVersion.Equal(semver.MustParse("1.18.0")) {
return nil, fmt.Errorf(`You seem to be using kubectl 1.18.0, which contains an unfixed issue
that makes 'kubectl diff' modify resources in your cluster.
Please upgrade kubectl to at least version 1.18.1.`)
}
// required for separating
namespaces, err := k.ctl.Namespaces()
if err != nil {
resourceNamespaces := state.Namespaces()
namespaces = map[string]bool{}
for _, namespace := range resourceNamespaces {
_, err = k.ctl.Namespace(namespace)
if err != nil {
if errors.As(err, &client.ErrNamespaceNotFound{}) {
continue
}
return nil, errors.Wrap(err, "retrieving namespaces")
}
namespaces[namespace] = true
}
}
resources, err := k.ctl.Resources()
if err != nil {
return nil, errors.Wrap(err, "listing known api-resources")
}
// separate resources in groups
//
// soon: resources that have unmet dependencies that will be met during
// apply. These will be diffed statically, because checking with the cluster
// would cause an error
//
// live: all other resources
live, soon := separate(state, k.Env.Spec.Namespace, separateOpts{
namespaces: namespaces,
resources: resources,
})
// differ for live resources
liveDiff, err := k.differ(opts.Strategy)
if err != nil {
return nil, err
}
// reports all resources as created
staticDiffAllCreated := StaticDiffer(true)
// reports all resources as deleted
staticDiffAllDeleted := StaticDiffer(false)
// include orphaned resources in the diff if it was requested by the user
orphaned := manifest.List{}
if opts.WithPrune {
// find orphaned resources
orphaned, err = k.Orphaned(state)
if err != nil {
return nil, err
}
}
// run the diff
d, err := multiDiff{
{differ: liveDiff, state: live},
{differ: staticDiffAllCreated, state: soon},
{differ: staticDiffAllDeleted, state: orphaned},
}.diff()
switch {
case err != nil:
return nil, err
case d == nil:
return nil, nil
}
if opts.Summarize {
return util.Diffstat(*d)
}
return d, nil
}
type separateOpts struct {
namespaces map[string]bool
resources client.Resources
}
func separate(state manifest.List, defaultNs string, opts separateOpts) (live manifest.List, soon manifest.List) {
soonNs := make(map[string]bool)
for _, m := range state {
if m.Kind() != "Namespace" {
continue
}
soonNs[m.Metadata().Name()] = true
}
for _, m := range state {
// non-namespaced always live
if !opts.resources.Namespaced(m) {
live = append(live, m)
continue
}
// handle implicit default
ns := m.Metadata().Namespace()
if ns == "" {
ns = defaultNs
}
// special case: namespace missing, BUT will be created during apply
if !opts.namespaces[ns] && soonNs[ns] {
soon = append(soon, m)
continue
}
// everything else
live = append(live, m)
}
return live, soon
}
// ErrorDiffStrategyUnknown occurs when a diff-strategy is requested that does
// not exist.
type ErrorDiffStrategyUnknown struct {
Requested string
differs map[string]Differ
}
func (e ErrorDiffStrategyUnknown) Error() string {
strats := []string{}
for s := range e.differs {
strats = append(strats, s)
}
return fmt.Sprintf("diff strategy `%s` does not exist. Pick one of: %v", e.Requested, strats)
}
func (k *Kubernetes) differ(override string) (Differ, error) {
strategy := k.Env.Spec.DiffStrategy
if override != "" {
strategy = override
}
d, ok := k.differs[strategy]
if !ok {
return nil, ErrorDiffStrategyUnknown{
Requested: strategy,
differs: k.differs,
}
}
return d, nil
}
// StaticDiffer returns a differ that reports all resources as either created or
// deleted.
func StaticDiffer(create bool) Differ {
return func(state manifest.List) (*string, error) {
s := ""
for _, m := range state {
is, should := m.String(false), ""
if create {
is, should = should, is
}
d, err := util.DiffStr(util.DiffName(m), is, should)
if err != nil {
return nil, err
}
s += d
}
if s == "" {
return nil, nil
}
return &s, nil
}
}
// multiDiff runs multiple differs (in series). In the future it might be worth
// parallelizing this.
type multiDiff []struct {
differ Differ
state manifest.List
}
func (m multiDiff) diff() (*string, error) {
diff := ""
for _, d := range m {
s, err := d.differ(d.state)
if err != nil {
return nil, err
}
if s == nil {
continue
}
diff += *s
}
if diff == "" {
return nil, nil
}
return &diff, nil
}