Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions pkg/sync/sync_tasks.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ func init() {
"IngressClass",
"Ingress",
"APIService",
"ExternalSecrets",
Copy link

@piotrplenik piotrplenik Feb 28, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

more resources should be added:

Suggested change
"ExternalSecrets",
"SecretStore",
"ClusterSecretStore",
"ClusterExternalSecret",
"PushSecret",
"ExternalSecrets",

ref https://external-secrets.io/latest/api/externalsecret/

}
for i, kind := range kinds {
// make sure none of the above entries are zero, we need that for custom resources
Expand Down
4 changes: 2 additions & 2 deletions pkg/sync/sync_tasks_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ import (
)

func Test_syncTasks_kindOrder(t *testing.T) {
assert.Equal(t, -35, kindOrder["Namespace"])
assert.Equal(t, -1, kindOrder["APIService"])
assert.Equal(t, -36, kindOrder["Namespace"])
assert.Equal(t, -2, kindOrder["APIService"])
assert.Equal(t, 0, kindOrder["MyCRD"])
}

Expand Down