We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81bfe21 commit 097fda6Copy full SHA for 097fda6
pkg/eks/podidentities/types.go
@@ -27,21 +27,3 @@ type EKSPodIdentityAssociation struct {
27
RoleARN string
28
AssociationID string
29
}
30
-
31
-// IsEqual determines if 2 EKSPodIdentityAssociation are equal.
32
-func (e *EKSPodIdentityAssociation) IsEqual(other *EKSPodIdentityAssociation) bool {
33
- if e == other {
34
- return true
35
- }
36
- if !cmp.Equal(e.ServiceAccountName, other.ServiceAccountName) {
37
- return false
38
39
- if !cmp.Equal(e.ServiceAccountNamespace, other.ServiceAccountNamespace) {
40
41
42
- if !cmp.Equal(e.RoleARN, other.RoleARN) {
43
44
45
46
47
-}
0 commit comments