Skip to content

Commit df4055d

Browse files
authored
CLOUDP-201542 Update to latest mongot image (#2312)
1 parent b6e8ac1 commit df4055d

File tree

4 files changed

+8
-10
lines changed

4 files changed

+8
-10
lines changed

internal/cli/atlas/deployments/options/deployment_opts.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const (
4141
spinnerSpeed = 100 * time.Millisecond
4242
// based on https://www.mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Clusters/operation/createCluster
4343
clusterNamePattern = "^[a-zA-Z0-9][a-zA-Z0-9-]*$"
44-
MongotDockerImageName = "docker.io/mongodb/mongodb-atlas-search:preview-20230914T165946Z"
44+
MongotDockerImageName = "docker.io/mongodb/mongodb-atlas-search:preview"
4545
PausedState = "PAUSED"
4646
StoppedState = "STOPPED"
4747
IdleState = "IDLE"

internal/cli/atlas/deployments/scripts/start_mongot.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
# See the License for the specific language governing permissions and
1515
# limitations under the License.
1616

17-
echo "$KEYFILECONTENTS" > "$KEYFILEPATH"
17+
echo "$KEY_FILE_CONTENTS" > "$KEY_FILE"
1818

1919
/etc/mongot-localdev/mongot \
20-
--data-dir "$DATADIR" \
21-
--mongodHostAndPort "$MONGODHOST" \
22-
--keyFile "$KEYFILEPATH"
20+
--data-dir "$DATA_DIR" \
21+
--mongodHostAndPort "$MONGOD_HOST_AND_PORT" \
22+
--keyFile "$KEY_FILE"

internal/cli/atlas/deployments/search/indexes/create.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ func (opts *CreateOpts) watch(ctx context.Context) (bool, error) {
193193
if err != nil {
194194
return false, err
195195
}
196-
if state == "STEADY" {
196+
if state == "READY" {
197197
return true, nil
198198
}
199199
return false, nil

internal/cli/atlas/deployments/setup.go

+2-4
Original file line numberDiff line numberDiff line change
@@ -384,10 +384,8 @@ func (opts *SetupOpts) configureMongot(ctx context.Context, keyFileContents stri
384384
Hostname: opts.LocalMongotHostname(),
385385
Entrypoint: "/bin/sh",
386386
EnvVars: map[string]string{
387-
"MONGODHOST": opts.internalMongodAddress(),
388-
"DATADIR": "/var/lib/mongot",
389-
"KEYFILEPATH": "/var/lib/mongot/keyfile",
390-
"KEYFILECONTENTS": keyFileContents,
387+
"MONGOD_HOST_AND_PORT": opts.internalMongodAddress(),
388+
"KEY_FILE_CONTENTS": keyFileContents,
391389
},
392390
Args: []string{"-c", string(mongotStartScript)},
393391
Volumes: map[string]string{

0 commit comments

Comments
 (0)