File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -592,7 +592,7 @@ functions:
592
592
# use AWS CLI to get the Kondukto API token from AWS Secrets Manager
593
593
kondukto_token=$(aws secretsmanager get-secret-value --secret-id "kondukto-token" --region "us-east-1" --query 'SecretString' --output text)
594
594
# set the KONDUKTO_TOKEN environment variable
595
- echo "KONDUKTO_TOKEN: ${ kondukto_token} " > kondukto_token.yml
595
+ echo "KONDUKTO_TOKEN: $kondukto_token" > kondukto_token.yml
596
596
- command : expansions.update
597
597
params :
598
598
file : kondukto_token.yml
Original file line number Diff line number Diff line change @@ -521,23 +521,24 @@ var platforms = []Platform{
521
521
),
522
522
ServerPlatform : "rhel80" ,
523
523
},
524
+ // MongoDB server only supports enterprise on RHEL9 for s390x and ppc64le, and only version 7.0+ is available.
524
525
{
525
526
Name : "rhel9" ,
526
527
Arch : ArchPpc64le ,
527
528
OS : OSLinux ,
528
529
Pkg : PkgRPM ,
529
- Repos : []Repo {RepoOrg , RepoEnterprise },
530
+ Repos : []Repo {RepoEnterprise },
530
531
BuildTags : defaultBuildTags ,
531
- MinLinuxServerVersion : & version.Version {Major : 6 , Minor : 0 , Patch : 0 },
532
+ MinLinuxServerVersion : & version.Version {Major : 7 , Minor : 0 , Patch : 0 },
532
533
},
533
534
{
534
535
Name : "rhel9" ,
535
536
Arch : ArchS390x ,
536
537
OS : OSLinux ,
537
538
Pkg : PkgRPM ,
538
- Repos : []Repo {RepoOrg , RepoEnterprise },
539
+ Repos : []Repo {RepoEnterprise },
539
540
BuildTags : defaultBuildTags ,
540
- MinLinuxServerVersion : & version.Version {Major : 6 , Minor : 0 , Patch : 0 },
541
+ MinLinuxServerVersion : & version.Version {Major : 7 , Minor : 0 , Patch : 0 },
541
542
},
542
543
{
543
544
Name : "rhel93" ,
You can’t perform that action at this time.
0 commit comments