File tree Expand file tree Collapse file tree 5 files changed +14
-11
lines changed
controllers/operator/construct Expand file tree Collapse file tree 5 files changed +14
-11
lines changed Original file line number Diff line number Diff line change @@ -417,7 +417,8 @@ functions:
417
417
- src/github.com/mongodb/mongodb-kubernetes/logs/*
418
418
remote_file : logs/${task_id}/${execution}/
419
419
bucket : operator-e2e-artifacts
420
- permissions : public-read
420
+ permissions : private
421
+ visibility : signed
421
422
content_type : text/plain
422
423
- command : attach.xunit_results
423
424
params :
@@ -432,7 +433,8 @@ functions:
432
433
- src/github.com/mongodb/mongodb-kubernetes/logs/*
433
434
remote_file : logs/${task_id}/${execution}/
434
435
bucket : operator-e2e-artifacts
435
- permissions : public-read
436
+ permissions : private
437
+ visibility : signed
436
438
content_type : text/plain
437
439
- command : gotest.parse_files
438
440
params :
@@ -448,7 +450,8 @@ functions:
448
450
- src/github.com/mongodb/mongodb-kubernetes/public/architectures/**/*.out
449
451
remote_file : logs/${task_id}/${execution}/
450
452
bucket : operator-e2e-artifacts
451
- permissions : public-read
453
+ permissions : private
454
+ visibility : signed
452
455
content_type : text/plain
453
456
454
457
preflight_image :
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ import (
33
33
34
34
const (
35
35
appDBServiceAccount = "mongodb-kubernetes-appdb"
36
- InitAppDbContainerName = "mongodb-enterprise -init-appdb"
36
+ InitAppDbContainerName = "mongodb-kubernetes -init-appdb"
37
37
// AppDB environment variable names
38
38
InitAppdbVersionEnv = "INIT_APPDB_VERSION"
39
39
podNamespaceEnv = "POD_NAMESPACE"
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ const (
48
48
databaseLivenessProbeCommand = "/opt/scripts/probe.sh"
49
49
databaseReadinessProbeCommand = "/opt/scripts/readinessprobe"
50
50
51
- InitDatabaseContainerName = "mongodb-enterprise -init-database"
51
+ InitDatabaseContainerName = "mongodb-kubernetes -init-database"
52
52
53
53
// Database environment variable names
54
54
InitDatabaseVersionEnv = "INIT_DATABASE_VERSION"
Original file line number Diff line number Diff line change @@ -2,22 +2,22 @@ requests==2.32.3
2
2
click == 8.0.4
3
3
docker == 7.1.0
4
4
Jinja2 == 3.1.6
5
- ruamel.yaml == 0.18.6
5
+ ruamel.yaml == 0.18.10
6
6
dnspython >= 2.6.1
7
7
MarkupSafe == 2.0.1
8
8
semver == 2.13.0
9
9
chardet == 3.0.4
10
10
jsonpatch == 1.33
11
11
kubernetes == 17.17.0
12
12
pymongo == 4.6.3
13
- pytest == 7.4.3
14
- pytest-asyncio == 0.14 .0
13
+ pytest == 8.3.5
14
+ pytest-asyncio == 0.26 .0
15
15
PyYAML == 6.0.2
16
16
urllib3 == 1.26.19
17
17
cryptography == 44.0.1
18
18
python-dateutil == 2.9.0
19
19
python-ldap == 3.4.4
20
- GitPython == 3.1.43
20
+ GitPython == 3.1.44
21
21
setuptools >= 71.0.3 # not directly required, pinned by Snyk to avoid a vulnerability
22
22
opentelemetry-api
23
23
opentelemetry-sdk
@@ -44,5 +44,5 @@ types-PyYAML==6.0.12.20250402
44
44
types-pytz == 2021.1.0
45
45
types-python-dateutil == 0.1.4
46
46
pipupgrade == 1.12.0
47
- pytest-cov == 6.0.0
47
+ pytest-cov == 6.1.1
48
48
pytest-socket == 0.7.0
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ remove_element() {
44
44
check_docker_daemon_is_running
45
45
46
46
if [[ -f ~ /.docker/config.json ]]; then
47
- if [[ " ${RUNNING_IN_EVG:- " " } " = = " true" ]]; then
47
+ if [[ " ${RUNNING_IN_EVG:- " false " } " ! = " true" ]]; then
48
48
# when running locally we don't need to docker login all the time - we can do it once in 11 hours (ECR tokens expire each 12 hours)
49
49
if [[ -n " $( find ~ /.docker/config.json -mmin -360 -type f) " ]] &&
50
50
grep " quay.io" -q ~ /.docker/config.json && # TODO to be removed at public preview stage of community-search
You can’t perform that action at this time.
0 commit comments