-
Notifications
You must be signed in to change notification settings - Fork 5.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add ability to hide certain annotations on secret resources (#1…
…8216) Signed-off-by: Siddhesh Ghadi <[email protected]>
- Loading branch information
Showing
10 changed files
with
138 additions
and
11 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
package e2e | ||
|
||
import ( | ||
"regexp" | ||
"testing" | ||
|
||
"github.com/stretchr/testify/assert" | ||
|
||
"github.com/argoproj/gitops-engine/pkg/health" | ||
|
||
. "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1" | ||
. "github.com/argoproj/argo-cd/v2/test/e2e/fixture" | ||
. "github.com/argoproj/argo-cd/v2/test/e2e/fixture/app" | ||
) | ||
|
||
// Values of `.data` & `.stringData“ fields in Secret resources are masked in UI/CLI | ||
// Optionally, values of `.metadata.annotations` can also be masked, if needed. | ||
func TestMaskSecretValues(t *testing.T) { | ||
sensitiveData := regexp.MustCompile(`SECRETVAL|NEWSECRETVAL|U0VDUkVUVkFM`) | ||
|
||
Given(t). | ||
Path("empty-dir"). | ||
When(). | ||
SetParamInSettingConfigMap("resource.sensitive.mask.annotations", "token"). // hide sensitive annotation | ||
AddFile("secrets.yaml", `apiVersion: v1 | ||
kind: Secret | ||
metadata: | ||
name: secret | ||
annotations: | ||
token: SECRETVAL | ||
app: test | ||
stringData: | ||
username: SECRETVAL | ||
data: | ||
password: U0VDUkVUVkFM | ||
`). | ||
CreateApp(). | ||
Sync(). | ||
Then(). | ||
Expect(SyncStatusIs(SyncStatusCodeSynced)). | ||
Expect(HealthIs(health.HealthStatusHealthy)). | ||
// sensitive data should be masked in manifests output | ||
And(func(app *Application) { | ||
mnfs, _ := RunCli("app", "manifests", app.Name) | ||
assert.False(t, sensitiveData.MatchString(mnfs)) | ||
}). | ||
When(). | ||
PatchFile("secrets.yaml", `[{"op": "replace", "path": "/stringData/username", "value": "NEWSECRETVAL"}]`). | ||
PatchFile("secrets.yaml", `[{"op": "add", "path": "/metadata/annotations", "value": {"token": "NEWSECRETVAL"}}]`). | ||
Refresh(RefreshTypeHard). | ||
Then(). | ||
Expect(SyncStatusIs(SyncStatusCodeOutOfSync)). | ||
// sensitive data should be masked in diff output | ||
And(func(app *Application) { | ||
diff, _ := RunCli("app", "diff", app.Name) | ||
assert.False(t, sensitiveData.MatchString(diff)) | ||
}) | ||
} |
Empty file.
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