Bug 1612382 Comment 0 Edit History

Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.

On STAGE and PROD, the `main-preview/cfr-ml-models` collection has a certificate that is about to expire.

This is because the refresh signature lambda skips it.

The refresh signature lambda skips the preview collection because it is unused.

The preview collection for `cfr-ml-models` is not used, because review was disabled after the 3 collections were created (main-workspace/cfr-ml-models, main-preview/cfr-ml-models, main/cfr-ml-models).

I would suggest to delete this unused collection.

```
export AUTH=admin:s3cr3t
export SERVER=https://settings-writer.stage.mozaws.net/v1

http DELETE $SERVER/buckets/main-preview/collections/rocket-releases -a $AUTH
```

```
export SERVER=https://settings-writer.prod.mozaws.net/v1
http DELETE $SERVER/buckets/main-preview/collections/rocket-releases -a $AUTH
```



See also https://github.com/mozilla-services/cloudops-deployment/pull/3571  and https://bugzilla.mozilla.org/show_bug.cgi?id=1601303#c3

Also, in the past, we had issues when deleting preview collections. This should be fixed by now (see https://bugzilla.mozilla.org/show_bug.cgi?id=1575182)
On STAGE and PROD, the `main-preview/cfr-ml-models` collection has a certificate that is about to expire.

This is because the refresh signature lambda skips it.

The refresh signature lambda skips the preview collection because it is unused.

The preview collection for `cfr-ml-models` is not used, because review was disabled after the 3 collections were created (main-workspace/cfr-ml-models, main-preview/cfr-ml-models, main/cfr-ml-models).

I would suggest to delete this unused collection.

```
export AUTH=admin:s3cr3t
export SERVER=https://settings-writer.stage.mozaws.net/v1

http DELETE $SERVER/buckets/main-preview/collections/cfr-ml-models -a $AUTH
```

```
export SERVER=https://settings-writer.prod.mozaws.net/v1
http DELETE $SERVER/buckets/main-preview/collections/cfr-ml-models -a $AUTH
```



See also https://github.com/mozilla-services/cloudops-deployment/pull/3571  and https://bugzilla.mozilla.org/show_bug.cgi?id=1601303#c3

Also, in the past, we had issues when deleting preview collections. This should be fixed by now (see https://bugzilla.mozilla.org/show_bug.cgi?id=1575182)

Back to Bug 1612382 Comment 0