Skip to content

Commit

Permalink
Merge pull request #8817 from rook/mergify/bp/release-1.7/pr-8816
Browse files Browse the repository at this point in the history
ceph: Pick up latest ceph base image 16.2.6-20210918 (backport #8816)
  • Loading branch information
travisn committed Sep 23, 2021
2 parents 2c69e71 + 876de3b commit 0e22583
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Documentation/ceph-upgrade.md
Expand Up @@ -430,7 +430,7 @@ Prior to August 2021, official images were on docker.io. While those images will

These images are tagged in a few ways:

* The most explicit form of tags are full-ceph-version-and-build tags (e.g., `v16.2.6-20210916`).
* The most explicit form of tags are full-ceph-version-and-build tags (e.g., `v16.2.6-20210918`).
These tags are recommended for production clusters, as there is no possibility for the cluster to
be heterogeneous with respect to the version of Ceph running in containers.
* Ceph major version tags (e.g., `v16`) are useful for development and test clusters so that the
Expand All @@ -446,7 +446,7 @@ The majority of the upgrade will be handled by the Rook operator. Begin the upgr
Ceph image field in the cluster CRD (`spec.cephVersion.image`).

```sh
NEW_CEPH_IMAGE='quay.io/ceph/ceph:v16.2.6-20210916'
NEW_CEPH_IMAGE='quay.io/ceph/ceph:v16.2.6-20210918'
CLUSTER_NAME="$ROOK_CLUSTER_NAMESPACE" # change if your cluster name is not the Rook namespace
kubectl -n $ROOK_CLUSTER_NAMESPACE patch CephCluster $CLUSTER_NAME --type=merge -p "{\"spec\": {\"cephVersion\": {\"image\": \"$NEW_CEPH_IMAGE\"}}}"
```
Expand Down
2 changes: 1 addition & 1 deletion cluster/examples/kubernetes/ceph/cluster.yaml
Expand Up @@ -19,7 +19,7 @@ spec:
# v14 is nautilus, v15 is octopus, and v16 is pacific.
# RECOMMENDATION: In production, use a specific version tag instead of the general v14 flag, which pulls the latest release and could result in different
# versions running within the cluster. See tags available at https://hub.docker.com/r/ceph/ceph/tags/.
# If you want to be more precise, you can always use a timestamp tag such quay.io/ceph/ceph:v16.2.6-20210916
# If you want to be more precise, you can always use a timestamp tag such quay.io/ceph/ceph:v16.2.6-20210918
# This tag might not contain a new Ceph version, just security fixes from the underlying operating system, which will reduce vulnerabilities
image: quay.io/ceph/ceph:v16.2.6
# Whether to allow unsupported versions of Ceph. Currently `nautilus`, `octopus`, and `pacific` are supported.
Expand Down
4 changes: 2 additions & 2 deletions images/ceph/Makefile
Expand Up @@ -18,9 +18,9 @@ include ../image.mk
# Image Build Options

ifeq ($(GOARCH),amd64)
CEPH_VERSION = v16.2.6-20210916
CEPH_VERSION = v16.2.6-20210918
else
CEPH_VERSION = v16.2.6-20210916
CEPH_VERSION = v16.2.6-20210918
endif
REGISTRY_NAME = quay.io
BASEIMAGE = $(REGISTRY_NAME)/ceph/ceph-$(GOARCH):$(CEPH_VERSION)
Expand Down

0 comments on commit 0e22583

Please sign in to comment.