-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This moves things into separate packages to avoid a potential cyclic import as soon as we would like to utilize `jsondiff` in `ssa` itself. Signed-off-by: Hidde Beydals <hidde@hhh.computer>
- Loading branch information
Showing
26 changed files
with
712 additions
and
539 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
package errors | ||
|
||
import ( | ||
"regexp" | ||
|
||
"k8s.io/apimachinery/pkg/api/errors" | ||
) | ||
|
||
// Match CEL immutable error variants. | ||
var matchImmutableFieldErrors = []*regexp.Regexp{ | ||
regexp.MustCompile(`.*is\simmutable.*`), | ||
regexp.MustCompile(`.*immutable\sfield.*`), | ||
} | ||
|
||
// IsImmutableError checks if the given error is an immutable error. | ||
func IsImmutableError(err error) bool { | ||
// Detect immutability like kubectl does | ||
// https://github.com/kubernetes/kubectl/blob/8165f83007/pkg/cmd/apply/patcher.go#L201 | ||
if errors.IsConflict(err) || errors.IsInvalid(err) { | ||
return true | ||
} | ||
|
||
// Detect immutable errors returned by custom admission webhooks and Kubernetes CEL | ||
// https://kubernetes.io/blog/2022/09/29/enforce-immutability-using-cel/#immutablility-after-first-modification | ||
for _, fieldError := range matchImmutableFieldErrors { | ||
if fieldError.MatchString(err.Error()) { | ||
return true | ||
} | ||
} | ||
|
||
return false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
package errors | ||
|
||
import ( | ||
"fmt" | ||
"testing" | ||
|
||
. "github.com/onsi/gomega" | ||
) | ||
|
||
func TestIsImmutableError(t *testing.T) { | ||
testCases := []struct { | ||
name string | ||
err error | ||
match bool | ||
}{ | ||
{ | ||
name: "CEL immutable error", | ||
err: fmt.Errorf(`the ImmutableSinceFirstWrite "test1" is invalid: value: Invalid value: "string": Value is immutable`), | ||
match: true, | ||
}, | ||
{ | ||
name: "Custom admission immutable error", | ||
err: fmt.Errorf(`the IAMPolicyMember's spec is immutable: admission webhook "deny-immutable-field-updates.cnrm.cloud.google.com" denied the request: the IAMPolicyMember's spec is immutable`), | ||
match: true, | ||
}, | ||
{ | ||
name: "Not immutable error", | ||
err: fmt.Errorf(`is not immutable`), | ||
match: false, | ||
}, | ||
} | ||
|
||
for _, tc := range testCases { | ||
t.Run(tc.name, func(t *testing.T) { | ||
g := NewWithT(t) | ||
|
||
g.Expect(IsImmutableError(tc.err)).To(BeIdenticalTo(tc.match)) | ||
}) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.