Skip to content

Commit

Permalink
Merge branch 'master' into limit-rbac-kanister-operator
Browse files Browse the repository at this point in the history
  • Loading branch information
r4rajat authored Sep 26, 2024
2 parents d9fff04 + 0847571 commit d8da34f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions ROADMAP.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,4 @@ Please join the Kanister community to give feedback on the roadmap
resurrect https://github.com/kanisterio/kanister/issues/193
1. Merge the Repository controller into the Kanister controller.
1. Support for creation of blueprints/actionsets in application namespaces https://github.com/kanisterio/kanister/discussions/2922
1. Support iterating over multiple resources with the same function https://github.com/kanisterio/kanister/discussions/3001
4 changes: 2 additions & 2 deletions docker/postgres-kanister-tools/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
awscli==1.34.6
awscli==1.34.26
pip==24.2
setuptools==73.0.1
setuptools==75.1.0
wheel==0.44.0
4 changes: 2 additions & 2 deletions docker/postgresql/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
awscli==1.34.6
awscli==1.34.26
wal-e==1.1.1
pip==24.2
setuptools==73.0.1
setuptools==75.1.0
wheel==0.44.0
2 changes: 1 addition & 1 deletion pkg/blockstorage/blockstorage_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ func (s *BlockStorageProviderSuite) TestCreateSnapshot(c *check.C) {
c.Assert(err, check.IsNil)
s.snapshots = nil
_, err = s.provider.SnapshotGet(context.Background(), snapshot.ID)
c.Assert(err, check.IsNil)
c.Assert(err, check.NotNil)
c.Assert(strings.Contains(err.Error(), blockstorage.SnapshotDoesNotExistError), check.Equals, true)
}
}
Expand Down

0 comments on commit d8da34f

Please sign in to comment.