-
Notifications
You must be signed in to change notification settings - Fork 509
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CLOUDP-276565 MongoDB 8.0.0 GA support (#1624)
* CLOUDP-276565 MongoDB 8.0.0 GA support * Fixes and release notes * Fixed Agent distro
- Loading branch information
Showing
8 changed files
with
42 additions
and
22 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,4 @@ | ||
# MongoDB Kubernetes Operator 0.11.0 | ||
# MongoDB Kubernetes Operator 0.12.0 | ||
|
||
## Migrating agent images to ubi | ||
All agent images were updated to use the ubi repo | ||
|
||
## Documentation improvements | ||
Improvements were made to the documentation of using the community operator as well as the one for local development. | ||
|
||
## Logging changes | ||
- Added `AuditLogRotate` field to `AgentConfiguration` | ||
- Fixed JSON key to be lower case: `logRotate` | ||
|
||
## Bug Fixes | ||
- Users removed from the resource are now also deleted from the database and their connection string secrets are cleaned up | ||
- Scram secret name collisions will now be caught when validating specs | ||
|
||
## Important Bumps | ||
- Bumped go to 1.22 | ||
## Added support for MongoDB 8.0.0 GA | ||
MongoDB 8.0.0 GA is now officially supported by the Operator |
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
28 changes: 28 additions & 0 deletions
28
test/e2e/replica_set_enterprise_upgrade_7_8/replica_set_enterprise_upgrade_5_6_test.go
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,28 @@ | ||
package replica_set | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
"os" | ||
"testing" | ||
|
||
e2eutil "github.com/mongodb/mongodb-kubernetes-operator/test/e2e" | ||
"github.com/mongodb/mongodb-kubernetes-operator/test/e2e/replica_set_enterprise_upgrade" | ||
) | ||
|
||
var ( | ||
versionsForUpgrades = []string{"7.0.12", "8.0.0"} | ||
) | ||
|
||
func TestMain(m *testing.M) { | ||
code, err := e2eutil.RunTest(m) | ||
if err != nil { | ||
fmt.Println(err) | ||
} | ||
os.Exit(code) | ||
} | ||
|
||
func TestReplicaSet(t *testing.T) { | ||
ctx := context.Background() | ||
replica_set_enterprise_upgrade.DeployEnterpriseAndUpgradeTest(ctx, t, versionsForUpgrades) | ||
} |