Skip to content

Commit

Permalink
Merge pull request #9378 from travisn/release-1.8.0
Browse files Browse the repository at this point in the history
build: Update the release version to v1.8.0
  • Loading branch information
travisn committed Dec 9, 2021
2 parents a008501 + d757c6b commit 4d5fca8
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Documentation/ceph-monitoring.md
Expand Up @@ -38,7 +38,7 @@ With the Prometheus operator running, we can create a service monitor that will
From the root of your locally cloned Rook repo, go the monitoring directory:

```console
$ git clone --single-branch --branch v1.8.0-beta.0 https://github.com/rook/rook.git
$ git clone --single-branch --branch v1.8.0 https://github.com/rook/rook.git
cd rook/deploy/examples/monitoring
```

Expand Down
2 changes: 1 addition & 1 deletion Documentation/quickstart.md
Expand Up @@ -34,7 +34,7 @@ In order to configure the Ceph storage cluster, at least one of these local stor
A simple Rook cluster can be created with the following kubectl commands and [example manifests](https://github.com/rook/rook/blob/{{ branchName }}/deploy/examples).

```console
$ git clone --single-branch --branch v1.8.0-beta.0 https://github.com/rook/rook.git
$ git clone --single-branch --branch v1.8.0 https://github.com/rook/rook.git
cd rook/deploy/examples
kubectl create -f crds.yaml -f common.yaml -f operator.yaml
kubectl create -f cluster.yaml
Expand Down
2 changes: 1 addition & 1 deletion deploy/examples/direct-mount.yaml
Expand Up @@ -18,7 +18,7 @@ spec:
dnsPolicy: ClusterFirstWithHostNet
containers:
- name: rook-direct-mount
image: rook/ceph:v1.8.0-beta.0
image: rook/ceph:v1.8.0
command: ["/tini"]
args: ["-g", "--", "/usr/local/bin/toolbox.sh"]
imagePullPolicy: IfNotPresent
Expand Down
2 changes: 1 addition & 1 deletion deploy/examples/images.txt
Expand Up @@ -6,4 +6,4 @@
quay.io/ceph/ceph:v16.2.7
quay.io/cephcsi/cephcsi:v3.4.0
quay.io/csiaddons/volumereplication-operator:v0.1.0
rook/ceph:v1.8.0-beta.0
rook/ceph:v1.8.0
2 changes: 1 addition & 1 deletion deploy/examples/operator-openshift.yaml
Expand Up @@ -445,7 +445,7 @@ spec:
serviceAccountName: rook-ceph-system
containers:
- name: rook-ceph-operator
image: rook/ceph:v1.8.0-beta.0
image: rook/ceph:v1.8.0
args: ["ceph", "operator"]
securityContext:
runAsNonRoot: true
Expand Down
2 changes: 1 addition & 1 deletion deploy/examples/operator.yaml
Expand Up @@ -362,7 +362,7 @@ spec:
serviceAccountName: rook-ceph-system
containers:
- name: rook-ceph-operator
image: rook/ceph:v1.8.0-beta.0
image: rook/ceph:v1.8.0
args: ["ceph", "operator"]
securityContext:
runAsNonRoot: true
Expand Down
2 changes: 1 addition & 1 deletion deploy/examples/osd-purge.yaml
Expand Up @@ -25,7 +25,7 @@ spec:
serviceAccountName: rook-ceph-purge-osd
containers:
- name: osd-removal
image: rook/ceph:v1.8.0-beta.0
image: rook/ceph:v1.8.0
# TODO: Insert the OSD ID in the last parameter that is to be removed
# The OSD IDs are a comma-separated list. For example: "0" or "0,2".
# If you want to preserve the OSD PVCs, set `--preserve-pvc true`.
Expand Down
4 changes: 2 additions & 2 deletions deploy/examples/toolbox-job.yaml
Expand Up @@ -10,7 +10,7 @@ spec:
spec:
initContainers:
- name: config-init
image: rook/ceph:v1.8.0-beta.0
image: rook/ceph:v1.8.0
command: ["/usr/local/bin/toolbox.sh"]
args: ["--skip-watch"]
imagePullPolicy: IfNotPresent
Expand All @@ -32,7 +32,7 @@ spec:
mountPath: /etc/rook
containers:
- name: script
image: rook/ceph:v1.8.0-beta.0
image: rook/ceph:v1.8.0
volumeMounts:
- mountPath: /etc/ceph
name: ceph-config
Expand Down
2 changes: 1 addition & 1 deletion deploy/examples/toolbox.yaml
Expand Up @@ -18,7 +18,7 @@ spec:
dnsPolicy: ClusterFirstWithHostNet
containers:
- name: rook-ceph-tools
image: rook/ceph:v1.8.0-beta.0
image: rook/ceph:v1.8.0
command: ["/bin/bash"]
args: ["-m", "-c", "/usr/local/bin/toolbox.sh"]
imagePullPolicy: IfNotPresent
Expand Down

0 comments on commit 4d5fca8

Please sign in to comment.