@@ -74,20 +74,23 @@ func (o UnlinkSecretOptions) UnlinkSecrets() error {
74
74
func (o UnlinkSecretOptions ) unlinkSecretsFromServiceAccount (serviceaccount * kapi.ServiceAccount ) error {
75
75
// All of the requested secrets must be present in either the Mount or Pull secrets
76
76
// If any of them are not present, we'll return an error and push no changes.
77
- rmSecrets , failLater , err := o .GetSecrets ()
77
+ rmSecrets , hasNotFound , err := o .GetSecrets (true )
78
78
if err != nil {
79
79
return err
80
80
}
81
81
rmSecretNames := o .GetSecretNames (rmSecrets )
82
82
83
83
newMountSecrets := []kapi.ObjectReference {}
84
84
newPullSecrets := []kapi.LocalObjectReference {}
85
+ updated := false
85
86
86
87
// Check the mount secrets
87
88
for _ , secret := range serviceaccount .Secrets {
88
89
if ! rmSecretNames .Has (secret .Name ) {
89
90
// Copy this back in, since it doesn't match the ones we're removing
90
91
newMountSecrets = append (newMountSecrets , secret )
92
+ } else {
93
+ updated = true
91
94
}
92
95
}
93
96
@@ -96,20 +99,24 @@ func (o UnlinkSecretOptions) unlinkSecretsFromServiceAccount(serviceaccount *kap
96
99
if ! rmSecretNames .Has (imagePullSecret .Name ) {
97
100
// Copy this back in, since it doesn't match the one we're removing
98
101
newPullSecrets = append (newPullSecrets , imagePullSecret )
102
+ } else {
103
+ updated = true
99
104
}
100
105
}
101
106
102
- // Save the updated Secret lists back to the server
103
- serviceaccount .Secrets = newMountSecrets
104
- serviceaccount .ImagePullSecrets = newPullSecrets
105
- _ , err = o .ClientInterface .ServiceAccounts (o .Namespace ).Update (serviceaccount )
106
- if err != nil {
107
- return err
108
- }
109
-
110
- if failLater {
111
- return errors .New ("Some secrets could not be unlinked" )
107
+ if updated {
108
+ // Save the updated Secret lists back to the server
109
+ serviceaccount .Secrets = newMountSecrets
110
+ serviceaccount .ImagePullSecrets = newPullSecrets
111
+ _ , err = o .ClientInterface .ServiceAccounts (o .Namespace ).Update (serviceaccount )
112
+ if err != nil {
113
+ return err
114
+ }
115
+ if hasNotFound {
116
+ return fmt .Errorf ("Unlinked deleted secrets from %s/%s service account" , o .Namespace , serviceaccount .Name )
117
+ }
118
+ return nil
119
+ } else {
120
+ return errors .New ("No valid secrets found or secrets not linked to service account" )
112
121
}
113
-
114
- return nil
115
122
}
0 commit comments